/* Adjusting the general styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

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

h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button styles */
.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  font-size: 1.5rem;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 20%;
    height: auto;
    mask:
        radial-gradient(at 70% 31%,#000 29%,#0000 30%),
        radial-gradient(at 30% 31%,#000 29%,#0000 30%),
        linear-gradient(#000 0 0) bottom/100% 50% no-repeat;
    clip-path: polygon(-41% 0,50% 87%, 141% 0);
}

#yes-btn {
  background-color: #4caf50;
  color: #fff;
}

#no-btn {
  background-color: #f44336;
  color: #fff;
  position: relative; 
  z-index: 10;
}

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

/* Surprise section */
#surprise {
  margin-top: 20px;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pop-in 0.5s ease-in-out;
}

.hidden {
  display: none;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    flex-direction: column;
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  button {
    font-size: 1rem;
    padding: 8px 12px;
  }

  #surprise {
    font-size: 1.5rem;
  }
}

/* Keyframes for animations */
@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes move-emoji {
  0% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-30%, -40%);
  }
  50% {
    transform: translate(-50%, -60%);
  }
  75% {
    transform: translate(-70%, -40%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
