body {
  margin: 0;
  background: #6a3583;
  font-family: 'Anton', sans-serif;
  font-style: normal;
}

nav{
  font-weight: 200;
}

/* Container for the video and text */
header {
  position: relative;
  width: 100%;
}

.header-video {
  width: 100%;
  height: 67vh;  
  object-fit: cover;
  display: block;
}

/* Style for the text over the video */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width:100%;
  transform: translate(-50%, -50%);
  color: #FED800;
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}

.video-overlay .overlay-content {
  color: white;
  font-size: 2rem;
}

.countdown span, .countdown small {
  display: block;
}