/* ---------- Base Reset ---------- */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

/* ---------- Background & Global ---------- */
body {
  margin: 0;
  background: radial-gradient(
    ellipse at center,
    #0d0f12 0%,
    #07080a 60%,
    #030405 100%
  );
  color: #d6d6d6;
  font-family: "EB Garamond", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Center Menu ---------- */
.center-menu {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
}

/* ---------- Links ---------- */
.center-menu a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #cfcfcf;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover: subtle, intellectual, not flashy */
.center-menu a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  p,
  li {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
}

