body,html {
    font-style: normal;
    height: 100%;
    font-size: 3.077vw;
    width: 100%!important
}

*,body,html {
    padding: 0;
    margin: 0;
    font-family: PingFang SC
}

* {
    outline: 0 none;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-size: 40px;
}

a {
    border: none;
    text-decoration: none
}

a,a:hover {
    transition: all .3s ease-out 0s
}

a:focus {
    text-decoration: none
}

img {
    border: none;
    vertical-align: middle
}

#__next {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%
}

p {
    margin-bottom: 0
}

::-webkit-scrollbar {
    width: 0
}

::-webkit-scrollbar:horizontal {
    height: 0
}
#myImage {
    position: absolute;
    top: -50px;
    left: -40px;
    transform: rotate(-30deg);
    width: 130px;
    height: auto;

    animation: zoomInOut 0.5s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: rotate(-30deg) scale(1);
    }
    50% {
        transform: rotate(-30deg) scale(1.2);
    }
}