/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Container Styling */
  .container {
    text-align: center;
    position: relative;
  }
  
  /* Heart Animation */
  .heart {
    width: 100px;
    height: 100px;
    background-color: #ff4d4d;
    position: relative;
    transform: rotate(-45deg);
    animation: heartbeat 1.4s infinite;
    margin: 0 auto;
  }
  
  .heart::before,
  .heart::after {
    content: '';
    width: 100px;
    height: 100px;
    background-color: #ff4d4d;
    border-radius: 50%;
    position: absolute;
  }
  
  .heart::before {
    top: -50px;
    left: 0;
  }
  
  .heart::after {
    top: 0;
    left: 50px;
  }
  
  @keyframes heartbeat {
    0% {
      transform: scale(1) rotate(-45deg);
    }
    25% {
      transform: scale(1.1) rotate(-45deg);
    }
    50% {
      transform: scale(1) rotate(-45deg);
    }
    75% {
      transform: scale(1.1) rotate(-45deg);
    }
    100% {
      transform: scale(1) rotate(-45deg);
    }
  }
  
  /* Text Styling */
  .text {
    font-size: 4rem;
    color: #fff;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .subtext {
    font-size: 2rem;
    color: #fff;
    margin-top: 10px;
    animation: fadeIn 3s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .text {
      font-size: 3rem;
    }
  
    .subtext {
      font-size: 1.5rem;
    }
  
    .heart {
      width: 80px;
      height: 80px;
    }
  
    .heart::before,
    .heart::after {
      width: 80px;
      height: 80px;
    }
  
    .heart::after {
      left: 40px;
    }
  }