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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.hero-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.start-button {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  background: #2fbf71;
  color: #0b1f14;
  cursor: pointer;
}

.start-button:active {
  transform: translateY(1px);
}

/* Larger screens */
@media (min-width: 768px) {
  .hero-image {
    max-width: 420px;
  }

  .start-button {
    font-size: 1.4rem;
    padding: 1.1rem 2.4rem;
  }
}
