html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
}

body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.stage {
    position: relative;
    width: min(100vw, 177.7777778vh);
    height: min(100vh, 56.25vw);
    aspect-ratio: 16 / 9;
    margin: auto;
    overflow: hidden;
    background-image: url('Content/bg.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#greenscreen {
    position: absolute;
    background: #00ff00;
    left: calc(56.787109375% - 0.5px);
    top: 12.326388889%;
    width: calc(37.548828125% + 1px);
    height: calc(56.163194444% + 1px);
    z-index: 9999;
}

.wheel {
    position: absolute;
    left: 6.4%;
    top: 0%;
    bottom: 0;
    margin: auto;
    height: 47.2%;
    width: 47.2%;
    border-radius: 50%;
    z-index: 9;
    transform: translateY(0.2%);
}

#arrow {
    position: absolute;
    height: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: 10s transform;
}

#videoPlayer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: fill;
    z-index: 1;
}

#audioPlayer {
    display: none;
}
