* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    color: #ffffff;
}

.container {
    text-align: center;
}

.timer-display {
    font-size: 8rem;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    /* Essa é a linha mágica que alinha a largura dos números e para a tremedeira */
    font-variant-numeric: tabular-nums; 
}

#milliseconds {
    font-size: 0.5em; 
    margin-left: 5px;
    opacity: 0.7; 
}

.controls button {
    background: none;
    border: 1px solid #333333;
    padding: 12px 24px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    color: #aaaaaa;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.controls button:hover {
    background-color: #222222;
    color: #ffffff;
    border-color: #555555;
}

.controls button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}