*{
    padding: 0;
    margin: 0;
}

body{
    min-width: 100vw;
    min-height: 100vh;
    background: #dbcfb1;
    overflow: hidden;
}

.main{
    position: absolute;
    top: 25%;
    left: 30%;

    background-color: #dfdfc3;
    border: 1px solid #655057;

    aspect-ratio: 2/1.15;
    width: 40%;
}

.content{
    z-index: 1;
    position: absolute;
    border: none;
    left: 0;
    width: 100%;
    height: 100%;
}

.fake-loading{
    z-index: 2;
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
}

@media screen
    and (max-device-width: 768px)
    and (orientation: portrait){
    .main{
        position: absolute;
        top: 0%;
        left: 0%;
    
        background-color: #dfdfc3;
        border: 1px solid #655057;
            
        height: 100%;
        width: 100%;
    }
}