/* style.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3f51b5; /* Subtle blue accent */
}

header .question {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.gallery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.gallery img {
  width: 32%;
  border-radius: 5px;
  object-fit: cover;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.buttons button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #3f51b5;
  background: transparent;
  color: #3f51b5;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.buttons button:hover {
  transform: scale(1.05);
}

#yesButton:hover {
  background-color: #c5cae9;
}

#noButton:hover {
  background-color: #ffcdd2;
}

.hidden {
  display: none;
}

#message p {
  font-size: 1.25rem;
  color: #4caf50; /* A positive green */
  margin-top: 1rem;
}

