* {
    box-sizing: border-box;
}

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    background-color: #222;
}

p {
    color: white;
    font-size: 1.1em;
    line-height: 1.4;
}

body {
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

.unselectable {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}



.main {
    padding: 0px;
}



.container {
    position:relative;
    text-align: center;
    display: none;
}

.logo {
    margin-top: 50px;
    height: 90px;
    pointer-events: none;
    cursor: default;
}

.video-player {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.btn {
    display: block;
    border-radius: 18px;
    width: 85%;
    margin: 0 auto 10px auto;
    padding: 0.3em 0.5em;
    border: solid 1px rgb(29, 161, 242);
    color: rgb(29, 161, 242);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition-duration: 0.2s;
    transition-property: background-color;
    font-size: 0.95em;
    user-select: none;
}

.btn:hover {
    background-color: rgba(29, 161, 242, 0.1);
}

.date {
    margin-bottom: 20px;
    height: 15px;
    pointer-events: none;
    cursor: default;
}


.curtain {
    position: absolute !important;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    object-fit: fill;
}

.gesture-detector {
    position: absolute !important;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: aqua;
    opacity: 0;
}


.container-overlay{
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
    cursor: default;
}

.instructions {
    display: block;
    margin-top: 80px;
    width: 80%;
    pointer-events: none;
    cursor: default;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.swipe-icon {
    display: block;
    margin-top: 80px;
    width: 40px;
    pointer-events: none;
    cursor: default;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}


@media (prefers-color-scheme: dark) {
    html {
        background-color: white;
    }

    p {
        color: #fff;
    }

    body {
        background-color: #222;
        color: white;
    }

    .btn {
        color: rgb(29, 161, 242);
        border-color: rgb(29, 161, 242);
    }
}
