body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

#timers {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.timer {
    width: calc(33.33% - 80px);
    height: 200px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center; /* Center text horizontally */
}

.timer input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    text-align: center;
}

.time-display {
    font-size: 24px;
    text-align: center;
}

.timer-name {
    font-size: 44px; /* Adjust font size as desired */
    font-weight: bold; /* Make the font bold */
    margin-top: 40px;
    margin-bottom: 10px; /* Add some margin at the bottom */
}

.running {
    background-color: lightgreen;
}

.stopped {
    background-color: lightcoral;
}
