.dca-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.dca-content {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.dca-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 850px;
    height: 100%;
}

.dca-logo {
    width: 600px;
    height: 208px;
    filter: invert(80%);
}

.dca-logo-container {
    padding-bottom: 10px;
    padding-right: 50px;
}

.dca-googleplay-logo {
    width: 200px;
    height: 77px;
}

.dca-googleplay-logo-container {
    
}

.dca-link-area {
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    row-gap: 7px;
    column-gap: 7px;
    max-width: 850px;
}

.dca-link-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #303030;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(0,100,255);
}

.dca-link-box:hover {
    border-style: solid;
    border-width: 1px;
    border-color: #E8E8E8;
}

.dca-link {
    display: block;
    padding: 8px;
    color: #E8E8E8;
}

.dca-middle {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    max-width: 1000px;
    height: 100%;
    padding-top: 20px;
}

.dca-middle p {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 16px;
}

.dca-middle-text-italic {
    color: #E8E8E8;
    line-height: 1.2em;
    font-size: 15px;
    font-style: italic;
    text-align: center;
    width: 100%;
}

.dca-middle span {
    font-weight: bold;
    color: #E8E8E8;
    line-height: 1.3em;
    font-size: 18px;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 960px) {
.dca-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.dca-logo-container {
    padding-right: 0px;
}
.dca-logo {
    width: calc(600px*0.65);
    height: calc(208px*0.65);
}
.dca-googleplay-logo {
    width: calc(200px*0.65);
    height: calc(77px*0.65);
}

.dca-link-area {
    padding-top: 5px;
}
.dca-middle {
    width: 95%;
}
}