body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  font-family: 'Poppins', sans-serif;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.container {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

h1 {
  font-size: 2.5em;
  color: #ff4d6d;
  font-weight: bold;
  transition: transform 0.3s;
}

h1:hover {
  transform: scale(1.1);
}

.buttons {
  margin-top: 20px;
}

.yes-button, .no-button {
  font-size: 1.5em;
  padding: 15px 30px;
  margin: 10px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.yes-button {
  background: #28a745;
  color: white;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.no-button {
  background: #dc3545;
  color: white;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.yes-button:hover {
  background: #218838;
  transform: scale(1.1);
}

.no-button:hover {
  background: #c82333;
  transform: scale(1.1);
}

.pulse {
  animation: pulse 1.5s infinite;
}

.gif_container img {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
