* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #d4e8d4;
  color: #2d4a2d;
  padding: 2rem;
  line-height: 1.6;
}
.container {
  max-width: 36rem;
  margin: 0 auto;
}
h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.welcome {
  margin-bottom: 2rem;
}
.users {
  margin: 2rem 0;
}
.users h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.users ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.users li {
  margin: 0.5rem 0;
}
.users a {
  color: #1a5a1a;
  text-decoration: none;
}
.users a:hover {
  text-decoration: underline;
}
.camping-img {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}
.camping-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
