.font-bold {
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.pulsing {
    animation: pulse 2s infinite ease-in-out;
    transform-origin: center;
}