* {
    font-family: 'Poppins', sans-serif;
    color: #707070;
    margin: 0px;
    font-size: 20px;
}

body, html{
    padding: 0px;
    margin: 0px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    background-color: #e8e0d3;
}
body{
    padding: 20px;
}

figure{
    display: flex;
    gap: 5px;
}

a{
    text-decoration:none
}

.links{
    display: flex;
    gap: 15px;
    justify-content: center;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
    
}

.logo{
    margin: 48px auto 50px auto;
}

.logo img{
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 150px;
    }

@media(max-width: 575px){
    .links{
        display: block;

    }
    *{
        font-size: 14px;
    }

    figure{
        text-align: left;
        margin-bottom: 12px;
    }

   /* .logo{
        margin: 32px auto 50px auto;
    }*/
}