body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  background-color: #1a1a1a;
  color: #f5f5f5;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-y: auto;
  position: relative;
}

/* left center title */
.left {
  position: fixed;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
}

.left h1 {
  font-size: 2rem;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

/* right center text */
.right {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 38vw;
  max-width: 620px;
}

.text {
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}

.text em {
  font-style: italic;
  color: #d8d8d8;
}


.back {
  position: absolute;
  bottom: 6vh;
  right: 3vw;
  font-size: 0.9rem;
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.back:hover {
  opacity: 1;
  text-shadow: 0 0 8px white;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: underline dotted;
}
a:hover {
  text-decoration: underline solid;
}

