
/* CSS Variables */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body{
    background-color: #F6F6F6;
}

.container{
    display: grid;
    justify-content: center;
    align-content: center;
    width: 100%;
}

.logo{
    width: 550px;
    margin-top: 75px;
}




@media only screen and (min-width:1200px){
    .logo{
        width: 500px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .logo{
        width: 450px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px){
    .logo{
        width: 400px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px){
    .logo{
        width: 350px;
    }
}

@media only screen and (max-width:575px){
    .logo{
        width: 300px;
    }
}