@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
body {
    background: linear-gradient(to right, #e998c2, #fac4d7);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Greetings letters animation */





.greetings span {
    font-family: 'Chewy', system-ui;
    font-size: 3rem;
    color: #fff;
    /* background:#fff; */
    background: linear-gradient(45deg, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 5px;
    animation: bounce 1s ease-in-out infinite alternate;
    display: inline-block;
    
}

.greetings span:nth-child(odd) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    to {
        transform: translateY(-10px);
    }
}

/* Description text */
.description span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
}

/* Button style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    padding: 14px 30px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #ff9966, #ff5e62);
}

.btn .sparkle {
    animation: twinkle 1s infinite alternate;
    fill: white;
}

@keyframes twinkle {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}



.sparkle {
    animation: sparkle 1s infinite alternate;
}

.background-image {
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1.5s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}


/* Animations */
@keyframes pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes sparkle {
    from { transform: rotate(0deg); }
    to { transform: rotate(20deg); }
}