*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: #000;
  font-family: "Cormorant Garamond", Times, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.36px;
}

.video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 100 * 16/9 */
  height: 56.25vw; /* 100 * 9/16 */
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.content {
  position: relative;
  max-width: 50%;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
}

.title {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: .5px;
  text-underline-offset: 0.2em;
}

.content nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content nav a {
  color: #fff;
  text-decoration: none;
}

.content nav a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: .5px;
  text-underline-offset: 0.2em;
}

@media (max-width: 768px) {
  .content {
    max-width: 100%;
  }
}
