
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: white;
  overflow-x: hidden;
}

.intro-container {
  min-height: calc(100vh - 60px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.intro-photo {
  max-height: 85vh;
  width: auto;
  max-width: 95vw;
  object-fit: contain;
  border: 4px solid white;
}

.enter-link {
  margin-top: 30px;
  text-decoration: none;
  font-size: 40px;
  color: black;
  font-family: Verdana, sans-serif;
  border: 2px solid black;
  padding: 10px 30px;
}

.enter-link:hover {
  background: white;
  color: red;
}

.intro-photo:hover {
  outline: 10px solid hotpink;
  outline-offset: 6px;
}

.scroll-banner {
  width: 100%;
  height: 30px;
  background-color: #ff00ba;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 24px;
  color: white;
}

.scroll-content span {
  display: inline-block;
  padding-right: 50px;
}

.scroll-banner:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.intro-video {
  width: 80vw;
  height: 80vh;
  display: block;
  border: none;
}

/* Hide mobile video by default */
.video-mobile {
  display: none;
}

.youtube-thumbnail {
  width: 80vw;
  height: auto;
  border: 4px solid white;
  display: block;
  object-fit: contain;
}

.youtube-thumbnail-link {
  position: relative;
  display: inline-block;
}

/* On mobile screens, swap the video embed for a thumbnail link */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}

.retro-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: black;
  background: #ea33b5;
  border: 2px solid #444;
  padding: 10px 14px;
  box-shadow: 2px 2px 0 #888;
  font-family: "Courier New", monospace;
  text-shadow: none;
  pointer-events: none;
  z-index: 10;
}
