html {
    box-sizing: border-box;
    height: 1920px;
    width: 1080px;
    background-color: grey;
    overflow: hidden;
    margin: 0 auto;
    font-size: 19.2px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    touch-action: none;
    touch-action: pan-x, pan-y;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -os-user-select: none;
}

h1 {
    text-align: center;
}

video {
    /* position: relative;
    top: 50%;
    transform: translateY(-50%); */
}

video, #videos {
    touch-action: none;
    pointer-events: none;
    
    background-color: black;
}
#main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.topbar {
    height: 10dvh;
    font-size: 5dvh;
    font-family: "Noto Sans SC", sans-serif;
    font-optical-sizing: auto;
    display: none;
}
#videos marquee {
    height: 100%;
    line-height: 10dvh;
    font-size: 6dvh;
    pointer-events: none;
    user-select: none;
}
#main button {
    margin: 10px;
    font-size: 5dvh;
    font-family: "Noto Sans SC", sans-serif;
    font-optical-sizing: auto;
}
#game, #ads, #adVideo {
    height: 100dvh;
    width: 100dvw;
    max-height: 100dvh;
    max-width: 100dvw;
    min-height: 100dvh;
    min-width: 100dvw;
    margin: 0 auto;
    touch-action: none;
    touch-action: pan-x, pan-y;
}

#ads {
    background-color: black;
}

#adVideo {
    margin: 0 auto;
    display: block;
    border: none;
    touch-action: none;
    pointer-events: none;
    background-color: transparent;
    /* vendor prefixed */
    /* background-image: url(bg.webp); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.interacty_padding {
    display: none;
    position: relative;
    padding: 99.5% 0 0 0;
    touch-action: none;
    touch-action: pan-x, pan-y;
}
.ads {
    display: block;
}
.interacty_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
    touch-action: pan-x, pan-y;
}

.interacty_padding iframe {
    -webkit-transform-origin: top;
    border: none;
    width: 100%;
    height: 90dvh;
    touch-action: none;
    touch-action: pan-up, pan-down;
    background-color: red;
}

iframe * {
    touch-action: none;
}