.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-setup .glowshadow {
    box-shadow: none;
    animation: heartBeat 5s infinite;
}

@keyframes heartBeat {
    0% {
        box-shadow: 0 0px 20px rgba(255, 222, 0, 0.6);
    }
    50% {
        box-shadow: 0 0px 35px rgba(255, 222, 0, 0.9);
    }
    100% {
        box-shadow: 0 0px 20px rgba(255, 222, 0, 0.6);
    }
}