* { margin: 0; padding: 0; box-sizing: border-box;}

:root {
    --bg-color: #FFFFFF;
    --Surface: #F5F5F5;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent: #3d3d3d;
}

body {
    background: var(--bg-color);
    font-family: 'Syne', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.wrapper {
    background: var(--Surface);
    padding: 30px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 10px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.header {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}
.counter {
    font-family: none;
    font-size: clamp(2rem, 4vw, 5rem);
    margin-bottom: 20px;
}
button {
    font-family: 'Space Mono', monospace;
    background-color: #3d3d3d;
    color: #F5F5F5;
    border: none;
    padding: 10px 20px;
    border-radius: 16px;
    margin: 0 10px;
    cursor: pointer;    
    font-size: 1rem;
    transition: all .35s ease-in-out;
}
button:hover {
    background-color: #858585;
    color: #3d3d3d;
}