/* Body styling */
body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  background-color: #ffe6f0;
  color: #ff007f;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevents scrolling issues */
  position: relative;
  cursor: url('images/ValentineImages/heart_mouse2.png'), auto; /* Replace with your image file path */
}


/* Heart animation */
.heart {
  position: absolute;
  color: #ff007f;
  font-size: 24px;
  animation: floatUp 4s linear infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

/* Heart container */
.heart-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* Buttons */
button {
  font-size: 1.2rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#yesButton {
  background-color: #ff007f;
  color: white;
}

#yesButton:hover {
  background-color: #ff3399;
}

#noButton {
  background-color: #ffe6f0;
  color: #ff007f;
  border: 2px solid #ff007f;
}

#noButton:hover {
  background-color: #ffe6f0;
}

.container {
  padding-top: 100px;  /* Adds space above the container, pushing it down */
}

img {
  width: 300px; /* Set a fixed width or use scale */
  height: auto;
  display: block;
  margin: 0 auto;
  
  /* keep pixel art original pixels */
  image-rendering: pixelated;
}
