body{
    background-color: #E3DEDB;
    color: #6C5D53;
    margin: 0;
    font-size: min(1.25vw + 16px);
}
@font-face {
    font-family: abyssinica_sil;
    src: url("../fonts/AbyssinicaSIL-Regular.ttf");
}
.container{
    display: flex;
    flex-direction: column;
    height: 100vh;
    

}
.left-section{
    position: relative;
    width: 100%;
}
.left-section-bg{
    background-color: #6C5D53;
    height: 50vh;
}
.left-section-body{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: #E3DEDB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    
}
.logo{
    width: max(128px);

}
.left-section-body div{
    text-align: center;
}
.right-section-body{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.right-section div{
    text-align: center;
}
.right-section-body div{
    margin-top: min(1.5vw + 30px);
}
.fa-am{
    font-family: abyssinica_sil;
}

@media (min-width:1025px)   { 
    .container{
        flex-direction: row;

    }
    .left-section{
        
        height: 100%;
        width: 50%;
    }
    .left-section-bg{
        position: absolute;
        top: 0px;
        left: -85px;
        right: -1px;
        transform: skew(-10deg);
        height: 100%;
        content: '';
    }
    .right-section{
        height: 100%;
        width: 50%;
        position: relative;
    }
    .right-section-body{
        position: absolute;
        right: 0px;
        top: 0px;
        bottom: 0px;
    }
}