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

body {
  font-family: "Arimo", sans-serif;
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

/* Homepage */

header {
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bio {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  color: #aaaaaa;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #111111;
}

footer {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #cccccc;
}

/* Subpages */

.subpage {
  text-align: center;
}

.subpage h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subpage p {
  font-size: 0.95rem;
  color: #888888;
  margin-bottom: 2rem;
}

.back-link {
  font-size: 0.875rem;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}

.back-link:hover {
  border-color: #111111;
}
