body {
    background: linear-gradient(to right, #ffe6f0, #fff0f5);
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    padding: 30px;
}

h1 {
    color: #d63384;
    font-size: 50px;
    animation: glow 2s infinite alternate;
}

.message {
    font-size: 24px;
    color: #444;
    margin-bottom: 30px;
}

.photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-photo {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px pink;
    transition: transform 0.5s;
}

.main-photo:hover {
    transform: scale(1.05);
}

.gifts {
    margin-top: 40px;
}

.gif {
    width: 250px;
    margin: 20px;
    border-radius: 20px;
}

.quote {
    margin-top: 40px;
    font-size: 28px;
    color: #c2185b;
    padding-bottom: 40px;
}

audio {
    margin-top: 20px;
}

.lyrics {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 20px pink;
}

.lyrics h2 {
    color: #d63384;
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Noto Sans Telugu', sans-serif;
}

.line {
    opacity: 0;
    font-size: 32px;
    margin-top: 30px;
    color: #d63384;
    font-family: 'Noto Sans Telugu', sans-serif;
    animation: fadeLyrics 3s forwards;
}

.line1 {
    animation-delay: 2s;
}

.line2 {
    animation-delay: 6s;
}

.line3 {
    animation-delay: 10s;
}

.line4 {
    animation-delay: 14s;
}

.line5 {
    animation-delay: 18s;
}

.line6 {
    animation-delay: 22s;
}

.line7 {
    animation-delay: 26s;
}

@keyframes fadeLyrics {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px pink;
    }

    to {
        text-shadow: 0 0 30px red;
    }
}
