* {
    user-select: none;
}

body,
html {
    margin: 0;
    top: 0;
    left: 0;
    padding: 0;
    user-select: none;
    overflow: hidden;
    touch-action: none;
    width: 100vw;
    height: 100vh;
}

#wrapper {
    background-color: lavenderblush;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3;
}

.ball {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: orangered;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.hole {
    position: absolute;
    display: none;
    top: 110px;
    left: 85px;
    width: 60px;
    height: 60px;
    background-color: black;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    transform-origin: center;
    animation: hole 0.8s ease-in-out;
}

@keyframes hole {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.counter {
    display: none;
    position: absolute;
    bottom: 20%;
    left: 20%;
    z-index: 9999;
}

#video {
    display: none;
    position: absolute;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 44px;
    top: 30px;
    left: 30px;
    width: 80vw;
    height: 85vh;
    color: darkorange;
    font-weight: bolder;
    z-index: 100;
}

.message {
    position: absolute;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 21px;
    top: 30px;
    left: 30px;
    width: 80vw;
    height: 85vh;
    color: black;
    font-weight: bolder;
}

#password-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: white;
    z-index: 100000;
}