body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

#messageContainer {
  text-align: center;
  transition: all 0.5s ease;
}

/* Happy State Styles */
.happy {
  color: #4caf50;
  animation: happyAnimation 2s infinite;
}

@keyframes happyAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Sad State Styles */
.sad {
  color: #555;
}

/* Rain Canvas */
#rainCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none; /* Hidden by default */
}

/* Button Styles */
#playButton {
  margin-top: 20px;
  border: 1px solid black;
  border-radius: 5px;
  background: transparent;
  color: black;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

#playButton:hover {
  background: rgba(0, 0, 0, 0.1);
}
#buymeacoffee {
  position: absolute;
  bottom: 2%;
  right: 2%;
  animation: heartbeat 5s infinite;
}
#buymeacoffee img {
  height: 5vh;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
}

