/* Layout */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  margin: 0;
  background-color: #F8C8DC; /* pink background */
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.container {
  width: min(95vw, 820px);
  text-align: center;
  padding: 16px;
}

/* Header */
.header_text {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 16px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* GIF */
.gif_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.gif_container img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 12px;

}

/* Buttons row */
.buttons {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;      /* so the runaway No stays within */
  z-index: 2;              /* keep it above the GIF */
  margin-top: 12px;
}

/* Buttons */
.btn {
  background-color: #FFB6C1; /* light pink */
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform 0.04s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { background-color: #ff91a4; }
.btn:active { transform: translateY(1px); }

/* Outline variant for "No" */
.btn--ghost {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* Small screens */
@media (max-width: 420px) {
  .header_text { font-size: 28px; }
  .btn { padding: 12px 20px; font-size: 15px; }
}
/* --- overrides to keep your GIF big & lovely --- */
.gif_container img {
  max-height: 60vh;     /* tall & cute */
  max-width: 90vw;      /* responsive on small screens */
  height: auto;
  width: auto;
  border-radius: 12px;
}

/* --- make sure No button isn't transparent (same as Yes) --- */
/* If you previously had .btn--ghost on No, we removed it in HTML.
   But just in case, this keeps any ghost variant solid pink. */
.btn--ghost {
  background-color: #FFB6C1;
  border: none;
  color: #fff;
}

/* If your old CSS set #noButton { position:absolute; margin-left:150px; }
   this override prevents weird offsets. JS will handle positioning. */
#noButton {
  margin: 0;
}
