/* Zelda Picture Website — green background, blue text, image at top. */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  /* FR5: green page background */
  background-color: #2ecc71;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* FR2: Zelda reference image at top, responsive, no overflow, not cropped */
.zelda-photo {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* FR3 + FR4: "I like Zelda" in blue text under the image */
.message {
  margin: 0;
  text-align: center;
  /* FR4: vivid readable blue */
  color: #0057ff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  /* subtle light backing improves blue-on-green contrast/readability */
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0.4em 0.8em;
  border-radius: 10px;
}
