body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.video-container {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
    .video-container video {
      /* height = 100 * (9 / 16) = 56.25 */
      height: 56.25vw;
    }
}
      
@media (max-aspect-ratio: 16/9) {
    .video-container video {
      /* width = 100 / (9 / 16) = 177.777777 */
      width: 177.78vh;
    }
}

.main-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 101vh;
    background: linear-gradient(-45deg, #FF9AA2, #FFB7B2, #FFDAC1, #E2F0CB, #B5EAD7);
	background-size: 400% 400%;
	animation: gradient 30s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#wheel-container {
    height: calc(100vh - 2vw);
}

@font-face {
    font-family: 'RedChristmasPersonalUse';
    src: url('../fonts/red_christmas.otf') format('opentype');
}

.christmas-font {
    font-family: 'RedChristmasPersonalUse', serif;
}

@keyframes scale-in {
    0% {
      transform: scale(0%);
    }
    100% {
        transform: scale(100%);
    }
  }

#win-banner-container {
    z-index: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#win-banner {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: .75rem;
    color: #0e0e0e;
    min-width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    display: none;
}

.win-banner-show {
    display: block !important;
    animation-name: scale-in;
    animation-duration: .4s;
}

#win-banner-title {
    padding: 0;
    font-weight: bold;
}