/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Page base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: pink;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* Header */
.header {
  padding: 5px;
  margin: 0px;
}

#hearts {
  width: 100vw;          /* full viewport width */
  max-width: 100%;
  height: auto;          /* keep aspect ratio */
  display: block;  /* overlap header */
}

/* Main content wrapper */
main {
  padding: 16px;
}

.content {
  max-width: 60ch;     /* readable text width */
  margin: 0 auto;
  padding: 20px;
  background-color: #fff5f8;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Section text */
h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

p {
  margin-top: 12px;
}

/* Message of the Day */
#motd {
  margin: 16px auto;
  padding: 12px;
  font-size: 1.2rem;
  border: 2px solid #27000d;
  border-radius: 8px;
  background-color: #fff0f5;
}

/* Footer */
.footer {
  margin-top: 24px;
  padding: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile safety */
img {
  max-width: 100%;
  height: auto;
}
