/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Arial, "Segoe UI", Roboto, sans-serif;
  font-style: italic;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.logo {
  height: 45px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
}

nav a:hover {
  color: #fff;
}

nav a.active {
  color: #fff;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #fff;
}

/* CONTENT (layout only) */
.content {
  min-height: calc(100vh - 93px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 400;
}

.content p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.content a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* OPT-IN animation class */
.fade-slide {
  animation: fadeSlide 0.6s ease-out forwards;
}
