body{
    margin: 0;
}
main{
    margin-top: auto;
    margin-bottom: auto;
}
.construction{
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
h1, h3{
    font-family: sans-serif;
    font-weight: 100;
}
.construction h1{
    font-size: 4rem;
    text-align: center;
}
.construction h3{
    font-size: 2rem;
    text-align: center;
}
.logo{
    width: 20vw;
    height: auto;
    display: flex;
    justify-self: center;
}
.socials{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-self: center;
    column-gap: 2.2vw;
    row-gap: 2.2vh;
    width: 10vw;
    height: auto;
}
.socials a{
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
    padding: 2.5em;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.7);
    display: flex;
}
.socials img{
    display: flex;
    flex-direction: row;
    width: 5vw;
    height: auto;
    transition: scale 0.5s ease;
}
.socials img:hover{
    transform: scale(1.1);
}

@media (max-width: 600px){
    .socials{
        column-gap: 5vw;
    }
    .socials a{
        padding: 1em;
    }
    .socials img{
        width: 20vw;
        height: auto;
    }
    .logo{
        width: 40vw;
    }
}
@media (max-width: 1040px){
    .logo{
        width: 40vw;
    }
}