* {
    font-family: "Papyrus";
    color: black;
    box-sizing: border-box;
    margin: 0.66vw 0 0.66vw 0;
}

html{
    width: 100vw;
    height: 100vh;
    overflow:hidden;
}

body{
    width: 100vw;
    height: 100vh;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:center;
    margin:0;
    overflow-x:hidden;
}

section{
    width: 100vw;
}

.title{
    cursor: unset;
    margin-bottom: 0;

}

img{
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.counter{
    width:5%;
    cursor:unset;
}

h1{
    margin-top: 0;
    text-align: center;
    font-size: 2vw;
}

@media (max-width:892px) {
    
        body{
        width: 100vw;
        height: 100vh;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        margin:0;
        overflow:hidden;
        }

        section{
            width: 200%;
        }

        h1{
            text-align: center;
            font-size: 4vw;
        }

        .counter{
            margin-top: 1vw;
            cursor:unset;
        }

}
    
