
* {
    -webkit-font-smoothing: antialiased;
    outline: none;
    box-sizing: border-box;
}

html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

#loading {
    background-size: 34px;  
    background: #000 url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.feels {
    position: relative;
    display: block;
    height: 40dvh;
    width: auto;
    max-width: 90dvw;
    margin: 0px auto 10px auto;
}

.sub {
    position: relative;
    display: block;
    height: 20dvh;
    max-height: 177px;
    width: auto;
    margin: 10px auto 0px auto;    
}
.buttons {
    position: fixed;
    z-index: 5;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.buttons a {
    margin: 0px;
}

.buttons a img {
    height: 8dvh;
    width: auto;
    max-height: 80px;
}

#bg {
    position: fixed;
    z-index: 1;
    background: url("../img/bg1.jpg");
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 10;
    width: 100%;
}


/****  MEDIA QUERIES ****/ 


@media (max-width: 800px) {
    
html, body {
    overscroll-behavior-y: none;
}
	
    .feels {
        width: 100dvw;
        height: auto;
    }    
    
    .sub {
        width: 65dvw;
        height: auto;
    }  
    
    .buttons {
        width: 100%;
    }   
    
    .buttons a {
        display: block;
        margin: 0px auto;
    }
    
    .buttons a img {
        display: block;
        margin: 0px auto;        
    }
    

}