.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.love {
    display: inline-block;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;

    animation: 1.5s heartbeat infinite;
}

.love img {
    max-width: 100%;
    max-height: 100%;
}

.fireworks {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes heartbeat {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}
