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

html {
  font-size: 22px;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: #f7f4ef;
}

.page {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-header h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
}

.tagline {
  margin: 0;
  font-size: 1.1rem;
  color: #4a4a4a;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.15rem;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 2px solid #c8b89a;
  border-radius: 0.5rem;
}

.nav-link:hover,
.nav-link:focus {
  background: #ede6da;
  outline: none;
}

.status-panel {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #d9d0c3;
  border-radius: 0.5rem;
}

.status-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.status-message {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #333;
}

.status-message.ok {
  color: #1f5c2e;
}

.status-message.warn {
  color: #7a4b00;
}

.status-message.error {
  color: #8b1e1e;
}

.site-footer {
  font-size: 0.95rem;
  color: #5a5a5a;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 480px) {
  html {
    font-size: 24px;
  }

  .site-header h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 28px;
  }

  .site-header h1 {
    font-size: 2.5rem;
  }
}
