body {
  margin: 0;
  padding: 0;
  background: #ffe6f0;
  font-family: 'Quicksand', sans-serif;
  overflow: hidden;
}

.container {
  text-align: center;
  padding-top: 15vh;
  z-index: 1;
  position: relative;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #ff3399;
  margin-bottom: 20px;
}

#typing-text {
  font-size: 1.2rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.buttons {
  margin-top: 40px;
}

.buttons a {
  text-decoration: none;
  background-color: #ff80bf;
  color: white;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.buttons a:hover {
  background-color: #e60073;
}

.hearts {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: url('https://i.imgur.com/WbJv8uk.png'); /* Corações PNG com transparência */
  background-size: 80px;
  animation: float 20s linear infinite;
  opacity: 0.2;
}

@keyframes float {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}
