/* StyleRef for About Page */
footer {
    background-color: #1D2434;
}

.headline{
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
        margin: 20px auto 30px;
        font-weight: bold;
        font-size: 3rem;
        font-weight: 500;
    background-color: #3a4663;
    border: 2px solid #1D2434;
    padding: 0px 20px;
    border-radius: 50px;
}

.text{
    margin: 20px 10% 50px;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    background-color:#3a4663ce;
    border: 2px solid #1D2434;
    padding: 30px;
    border-radius: 20px;
}

.text_color {
    color: rgb(255, 171, 138);
}

.textblock{
    margin: 3rem auto;
    width: 90%;
    max-width: 600px;
    padding: 20px 0px 20px;
    border-radius: 30px;
    background-image: url(images/Backdrop.png);
    background-size: 500%;
    border-radius: 15px;
    border: 3px solid #363F55
}

.colorblock{
    margin: 20px auto;
    width: 90%;
    max-width: 700px;
    background-color: #1e2535;
    border-radius: 15px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 150px;
    margin: 10px auto 50px;
}

.logo img {
    width: 150px;
    height: 150px;
    border: 2px solid #1D2434;
    border-radius: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1300px;
    margin: auto;

}

.social-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 30px auto 0px;
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 500px;

}

.social-block img {
    height: 80px;
    width: 80px;
    margin: 0 5px 0px;
    padding: 10px 10px;
    border-radius: 20px;
    background-color: #3a4663;
    border: 2px solid #1D2434;
    transition: 0.2s;
}

.social-block img:hover {
    background-color: #ff9c62 ;
    cursor: pointer;
    transition: 0.2s;
    transform: scale(1.05);
}

/* Media Queries */

@media screen and (max-width: 800px) {
    
    .textblock {
        background-size: 700%;
    }
    
    .text{
        margin: 20px 5% 60px;
    }
}
