body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff7f0;
  color: #333;
  text-align: center;
}

header, footer {
  background: #ffe4e1;
  padding: 1em;
}

main {
  padding: 2em;
}

button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1em;
}

button:hover {
  background: #ff85c1;
}

.hidden {
  display: none;
}

.easter-img {
  margin-top: 1em;
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

iframe {
  margin-top: 1em;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

@media (max-width: 600px) {
  body {
    font-size: 90%;
  }

  button {
    font-size: 0.9em;
    padding: 0.6em 1.2em;
  }
}
