body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff7fa;
  color: #4a3c44;
  cursor: url("https://cur.cursors-4u.net/love/lov-1/lov79.cur"), auto;
  background-size: 200px;
}

header {
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #d67ca7;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 18px;
  color: #896a79;
}

nav {
  margin-top: 20px;
}

nav a {
  text-decoration: none;
  color: #c66b9a;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 10px;
}

nav a:hover {
  background-color: #ffd6e8;
}

.welcome {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  background: #ffe9f1;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #ffd6e3;
  box-shadow: 0px 0px 10px #ffe0ea;
}

.welcome h2 {
  font-family: "Playfair Display", serif;
  color: #c6578a;
  font-size: 32px;
}

.soft-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background-color: #f8c8dc;
  color: #4a3c44;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.2s;
  font-weight: 600;
}

.soft-btn:hover {
  background-color: #ffd9e8;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  background-color: #ffeef5;
  border-top: 2px solid #ffd6e3;
  color: #a1728d;
}

.sparkle {
  position: fixed;
  width: 10px;
  height: 10px;
  background: pink;
  border-radius: 50%;
  pointer-events: none;
  animation: fade 0.8s linear forwards;
}

@keyframes fade {
  to {
    opacity: 0;
    transform: scale(2);
  }
}