@import url('https://fonts.googleapis.com/css2?family=Barriecito&display=swap');


html, body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: "IBM Plex Sans", sans-serif;
}

.top {
    width: 100%;
    height: 60px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    position: fixed;
    z-index: 100;
    top:0;
    left: 0;
}


.top img{
    width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 14px auto auto 50px;
}
.page{
    margin: 70px 0 0 0;
    padding: 0;
    height: calc(100vh - 100px);
}
 
 
@media (max-width: 768px) {

    html, body {
        overflow: auto;
        height: auto; 
    }   
    .top {
        position: relative;
        display: block;
    }
    .top h2{
        text-align: center;
    }
    .top img{
        width: 100px;
        margin: 14px auto auto 20px;
    }    
    .page{
        height: auto;
        margin: 0;
    }

}