body {
  font-family: 'Georgia', serif;
  background: linear-gradient(180deg, #f4efe9, #e8e2db);
  color: #2e2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
  margin: 0;
}

/* 💬 Message container */
.note {
  font-size: clamp(1.7em, 7vw, 2.3em); /* Responsive font */
  line-height: 1.6;
  color: #2e2e2e;
  text-align: center;
  max-width: 90vw;
  padding: 1.5em 1em;
  margin: 0 0 0.3em 0;  /* top right bottom left, this allows margins to be added in each button styleing */
  transition: opacity 0.6s ease, height 0.6s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: -0.09em;
}

/* 🔤 Animated letters */
.wave-letter {
  display: inline-block;
  opacity: 0.95;
  transform: translateY(0);
  animation: wave-rise 1.2s ease-out forwards;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  margin: 0;
}

/* 🌊 Wave animation */
@keyframes wave-rise {
  0% {
    transform: translateY(0);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.95;
  }
}

/* 🧘🏽‍♀️ Button */
.button {
  /* margin-top: 2em; */
  padding: 0.75em 0.5em;
  border: none;
  background: #5c715e;
  color: white;
  border-radius: 10px;
  font-size: 1em;
  font-size: clamp(1.0em, 5vw, 1.4em); /* Responsive font */
  cursor: pointer;
  transition: background 0.3s ease;

  max-width: 90vw;
  white-space: normal;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button:hover {
  background: #4a5d4d;
}

.note-button {
  margin-top: 1em;
}

.email-button {
  margin-top: 3em;
}

