/* Custom styles if needed */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Animation for the timer */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.timer-pulse {
    animation: pulse 1.5s infinite;
}

#timerDisplay {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #timerDisplay {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    #timerDisplay {
        font-size: 3rem;
    }
}
