/* Style the container */
.container {
    text-align: center;
    background-color: #ffffff; /* White background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    color: #ff5722; /* Orange text */
}

/* Style the timer heading */
.timer-heading {
    font-size: 2rem;
    text-align: center;
}

/* Style the timer display */
.timer {
    font-size: 120px; /* Set the font size to 120px */
    color: #ff5722; /* Orange text */
    background-color: #ffffff; /* White background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
}

/* Center the timer display horizontally */
.timer {
    display: block;
    margin: 0 auto;
}

