/* Reset */
* {
  box-sizing: border-box;
}

/* Body - Proper Centering (Mobile Safe) */
body {
  margin: 0;
  min-height: 100vh;      /* fallback */
  min-height: 100svh;     /* modern mobile safe height */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9e3e3;
  font-family: 'Arial', sans-serif;
}

/* Main Container */
.container {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 600px;
}

/* Heading */
h1 {
  font-size: 2.5em;
  color: #d32f2f;
  margin-bottom: 20px;
}

/* Buttons Wrapper */
.buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* YES Button */
.yes-button {
  font-size: 1.5em;
  padding: 10px 25px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* NO Button */
.no-button {
  font-size: 1.5em;
  padding: 10px 25px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative; /* important */
}


/* GIF */
.gif_container {
  margin-top: 30px;
}

.gif_container img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  h1 {
    font-size: 2em;
  }

  .yes-button,
  .no-button {
    font-size: 1.2em;
    padding: 8px 18px;
  }

  .gif_container img {
    max-width: 90%;
  }
}
