/* counter_styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

#timer {
    font-size: 3rem;
    margin-bottom: 20px;
}

#stopButton {
    display: none;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}