body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(205deg, black,rgb(249, 0, 254),#a649a9,rgb(202, 96, 163), #000000);
    color: rgb(14, 0, 84);
    text-align: center;
}

.container {
    padding: 30px;
}

h1 {
    font-size: 40px;
}

.music {
    margin: 20px 0;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.gallery img {
    border-radius: 20px;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.message {
    font-size: 20px;
    margin: 20px;
    min-height: 60px;
    border-right: 2px solid white;
    display: inline-block;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
}

.counter {
    margin: 20px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    background-color: #000000;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #ff0015;
}

#surprise {
    margin-top: 15px;
    font-size: 18px;
    color: yellow;
}
.img {
  width: 100%;
  height: auto;
}
/* Floating Hearts Animation */
.hearts-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -20px;
    font-size: 20px;
    animation: floatUp linear infinite;
    opacity: 0.8;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.floating-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.floating {
    position: absolute;
    font-size: 24px;
    animation: floatUp linear infinite;
    opacity: 0.8;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}
.msg{
    color: #ff7b00;
}
