/* Base styles */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f9e3e3;
  font-family: 'Arial', sans-serif;
  flex-direction: column;
}

.container {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5em;
  color: #d32f2f;
  margin: 0 0 20px;
}

.buttons {
  margin-top: 20px;
}

/* Button styles */
.yes-button,
.no-button {
  font-size: 1.5em;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.yes-button {
  background-color: #4caf50;
  color: white;
  margin-right: 10px;
}

.no-button {
  background-color: #f44336;
  color: white;
}

/* Hover effects */
.yes-button:hover,
.no-button:hover {
  transform: scale(1.05);
}

/* GIF container styles */
.gif_container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
  .yes-button,
  .no-button {
    font-size: 1.2em;
    padding: 8px 16px;
    margin-right: 5px;
  }
  .container {
    padding: 10px;
  }
}
