/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #282c34;
    color: #61dafb;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
}

h1 {
    margin-bottom: 20px;
    font-size: 5rem; /* Significantly increased font size for the title */
    color: #61dafb;
}

.timer {
    display: flex;
    gap: 30px;
    font-size: 8rem; /* Larger font size for the timer display */
    font-weight: bold;
    justify-content: center;
}

.label {
    font-size: 1.5rem; /* Larger font size for the labels under the time units */
    color: #adb5bd;
    display: block;
    margin-top: -15px;
}

.end-time {
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 1.5rem; /* Larger font size for input field */
}

button {
    padding: 15px 30px;
    font-size: 1.5rem; /* Larger font size for button */
    color: #61dafb;
    background-color: #20232a;
    border: 2px solid #61dafb;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #282c34;
}
