@keyframes animatedhover {
    50% {
        box-shadow: rgba(25, 3, 28, 0.22) 17px 17px 20px 10px;
    }
}

.animated-hover {
    border-radius: 4px;
    animation: animatedhover 5s 1;
}

.simple-hover {
    border-radius: 4px;
    background-color: rgba(251, 255, 0, 0.3);
}