/* === Base styling === */
body {
  background-color: #ede7db;
  color: #195016;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* === Header text === */
h1 {
  font-size: 3rem;
  margin-top: 40px;
  letter-spacing: 2px;
  color: #195016;
}

p {
  color: #333;
  font-size: 1.1rem;
  margin: 10px 0 20px;
}

/* === Navigation buttons === */
a {
  text-decoration: none;
}

button {
  background-color: #829b48;
  color: #fff;
  border: none;
  padding: 12px 28px;
  margin: 8px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease;
}

button:hover {
  background-color: #195016;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* === Responsive tweaks === */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  button {
    width: 80%;
    font-size: 1rem;
  }
}
