body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero-image {
  width: 180px;
  max-width: 60%;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.95;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.small {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

.hero-image {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}