.resplandor {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: -3px 3px 200px rgba(255, 255, 255, 0.7);
}

#text-animation-loader{
    animation: animationZoom 2s infinite alternate;
}

@keyframes animationZoom{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

#heart {
    position: relative;
    width: 100px;
    height: 90px;
    margin-top: 10px;
    transform-style: preserve-3d;
    animation: heartbeat 2s infinite;
    animation-timing-function: ease-in-out;
}

#heart::before,
#heart::after {
    position: absolute;
    background-color: #835cf6; /* Assuming this is the color for bg-dull-lavender-600 */
    top: 0;
    width: 52px;
    height: 80px;
    content: "";
    border-radius: 50px 50px 0 0;
}

#heart::before {
    left: 50px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

#heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
