body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdd1dc;
  /* Light pink */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.heart-container {
  position: relative;
}

.heart {
  position: relative;
  width: 200px;
  height: 200px;
  animation: pulse 1.2s infinite;
  /* Heart pulsing animation */
}

.hello-kitty {
  width: 150px;
  height: auto;
}

.message {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: medium;
  color: #ff69b4;
  /* Hot pink */
  font-family: Arial, sans-serif;
  display: inline-block;
  /* Ensure text remains on one line */
  text-align: center;
  /* Center the text horizontally */
}

.text {
  font-family: "Pacifico", cursive;
  font-size: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text span {
  display: inline-block;
}

.pulse {
  animation: pulse 1.2s infinite;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  color: #d72660;
}

#greet-btn {
  font-family: "Pacifico", cursive !important;
  background: #f3c1d8;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 1rem;
}
