body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-color: #ffe6f2;
  text-align: center;
  padding: 40px;
  color: #d63384;
}

.card {
  background: #fff0f6;
  border: 2px solid #ff99cc;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

textarea {
  width: 90%;
  height: 120px;
  border: 2px solid #ff99cc;
  border-radius: 15px;
  padding: 10px;
  resize: none;
  font-size: 14px;
  background: #fff5fa;
  color: #c2185b;
}

button {
  background: #ff4da6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: all 0.2s;
}

button:hover {
  background: #e60073;
}

.emoji {
  font-size: 2.5em;
  margin: 10px;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.emoji.animate {
  transform: scale(1.5) rotate(10deg);
  opacity: 0.7;
}

/* Make it responsive on phones */
@media (max-width: 600px) {
  body {
    padding: 20px;
    font-size: 14px;
  }

  .card {
    width: 95%;
    padding: 15px;
  }

  textarea {
    width: 100%;
    height: 100px;
    font-size: 13px;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .emoji {
    font-size: 2em;
  }
}

