﻿@keyframes lampeggia {
    0% {
        background-color: #dc3545 !important;
    }

    50% {
        background-color: #ffcccc !important;
    }

    100% {
        background-color: #dc3545 !important;
    }
}
.lampeggiante {
    animation: lampeggia 1s infinite !important;
}

