body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    overflow: hidden;
}

.container {
    text-align: center;
    color: white;
    font-family: 'Arial', sans-serif;
}

h1 {
    font-size: 2.5rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid white;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

@keyframes float {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.heart {
    position: absolute;
    bottom: -10px;
    font-size: 20px;
    color: white;
    animation: float 4s linear infinite;
}

.heart:nth-child(2) { left: 20%; animation-duration: 6s; }
.heart:nth-child(3) { left: 40%; animation-duration: 5s; }
.heart:nth-child(4) { left: 60%; animation-duration: 7s; }
.heart:nth-child(5) { left: 80%; animation-duration: 6.5s; }
