body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom right, #ffe0e6, #fff0f5);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  .container {
    max-width: 600px;
    padding: 2rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e91e63;
  }
  
  .love-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
  }
  
  .love-list li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .love-list li::before {
    content: "💗";
    position: absolute;
    left: 0;
  }
  
  .footer {
    font-size: 1.1rem;
    color: #888;
  }
  