/* Windy Moon Gardens — simple starter CSS (no HTML changes needed) */

html {
  background: #fbf7f0;
}

body {
  margin: 48px auto;
  padding: 28px 24px;
  max-width: 760px;

  background: #ffffff;
  color: #1f2937;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.65;

  border: 1px solid #e7e2d9;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

h1 {
  margin: 0 0 14px 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  margin: 14px 0;
  font-size: 18px;
}

a {
  color: #0f766e;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 118, 110, 0.25);
}

a:hover {
  border-bottom-color: rgba(15, 118, 110, 0.9);
}

@media (max-width: 640px) {
  body {
    margin: 18px 12px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 17px;
  }
}
