body {
  margin: 0;
  font-family: sans-serif;
  color: white;
  text-align: center;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  background-color: black;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20vh 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.fog-word {
  font-family: 'Courier New', Courier, monospace;
  font-style: italic;
}

.links a {
  display: inline-block;
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid white;
}

@media (max-width: 768px) {
  #bg-video {
    width: 100vw;
    height: 100vh;
    object-position: center;
  }

  h1 {
    font-size: 2rem;
  }

  .links a {
    display: block;
    margin: 10px 0;
  }
}
.overlay h1 .alt-font {
  font-family: 'Courier New', monospace;
  font-style: italic;
}
