body {
  background: #ffd1e7;
}

.valentine-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 40px;
}

.valentine-question {
  font-family: 'Pacifico', cursive;
  font-size: 3em;
  color: #e25555;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.button-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.valentine-btn {
  font-family: 'Arial', cursive;
  font-size: 1.3em;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

#yes-btn {
  background: #ff8fcf;
  color: white;
  padding: 15px 40px;
}

#yes-btn:hover {
  background: #ff5bbd;
  transform: scale(1.05);
}

#no-btn {
  background: #ffffff;
  color: #e25555;
  border: 2px solid #e25555;
}

#no-btn:hover {
  background: #ffe0f0;
}