* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #404E5E;
    color: #B7BBBF;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
}

header {
    position: relative;
    top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 7;
    
}


.logo {
    max-width: 200px;
    height: auto;

}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 5%;
    position: relative;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 40%;


}

.social-media-links a{
    text-decoration: none;
    color: antiquewhite;
    background-color: #6f8094;
    padding: 5px 10px;
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    box-shadow: -3px 2px 8px black;
    transition: transform 0.3s;

}
.social-media-link span{
    transition: transform 0.3s
}


.social-media-link img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.2s;
    filter: grayscale(100%);

}

.social-media-links a:hover img {
    /* transform: scale(1.2); */
    filter: grayscale(0%);
}
.social-media-links a:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    background-color: #788ba1;
}
.footer{
    color: white;
    position: relative;
    top: 10%;
}
.footer a{
    text-decoration: none;
    color: rgb(160, 179, 212);
}
.footer a:hover{
    color: rgb(138, 157, 188);
}



@media (max-width: 768px) {
    .social-media-links{
        width: 80%;
    }
    .social-media-link img {
        width: 40px;
        height: 40px;
    }
    .social-media-link img {
        filter: grayscale(0%);
    }
    .social-media-links a:hover {
        transform: scale(1);
        filter: grayscale(0%);
        background-color: #788ba1;
    }
    .social-media-links a:active{
        background-color: #788ba1;

    }
}

@media (max-width: 480px) {
    .social-media-link img {
        width: 30px;
        height: 30px;
    }
    .social-media-links{
        width: 100%;
    }

    .social-media-link img {
        filter: grayscale(0%);
    }

    .social-media-links a:hover {
        transform: scale(1);
        filter: grayscale(0%);
        background-color: #788ba1;
    }
    .social-media-links a:active{
        background-color: #788ba1;

    }

}
