/* General layout */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #ffffff; /* light background */
  color: #222222; /* dark text for readability */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 420px;
  padding: 20px;
  animation: none !important; /* disables any animation */
}

h1 {
  font-weight: 600; /* semi-bold */
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  color: #333333;
}

p {
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Dark mode removed — site stays light-themed */
