@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
html{
    height: 100%;
}
body{
    font-family: "Sour Gummy", sans-serif;
    color: #54514d;
}
.logo{
    text-align: center;
    height: 95vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.logo .container{
    width: 30%;
}
.logo img{
    max-width: 350px;
}
@media screen and (max-width:60em) {
    .logo .container{
        width: 70%;
    }
    .logo img{
        max-width: 100%;
    }
    
}