body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4d8ff;
  text-align: center;
  color: #333;
}

.page {
  display: none;
  padding: 50px;
}

.page.active {
  display: block;
  font-size: 60px;
}

h1, h2 {
  color: #2D1B69;
}

button {
  background: #2D1B69;
  border: none;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
}

button:hover {
  background: #6b028b;
}


/* Love Letters */
.letters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.buttons {
    display: flex;
    justify-content: center; 
    gap: 10px;               
    margin-top: 20px;       
}
.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 400px;
  height: 200;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* Secret heart */
#hiddenHeart {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}

.hidden {
  display: none;
}
