body {
  margin: 0;
  background: #F4F1EC;
  color: #1C1F2A;
  font-family: 'Inter', sans-serif;
}

.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  background-image: url("../texture/grain.png");
  background-repeat: repeat;

  opacity: 0.06; /* extremely subtle */
  z-index: 0;
}

.indented-text {
    margin-left: 8vw;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    max-width: 75ch;
}

/* LOCK LANDING ONLY */
.landing-page {
  height: 100vh;
  overflow: hidden;
}

/* LANDING LAYOUT */
.landing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100vh;
}

/* VIDEO */
.video-container {
  width: 40vw;
  max-width: 600px;
  height: 60vh;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.95) brightness(0.98);
}

/* SIDE LINKS */
.choice {
  font-family: 'EB Garamond', serif;
  font-size: 64px;
  text-decoration: none;
  color: #1C1F2A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice span {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.choice:hover span {
  transform: translateY(-6px);
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {

  .landing {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .video-container {
    width: 100%;
    height: 40vh;
  }

  .choice {
    font-size: 42px;
  }
}