*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    min-width: 300px;
}

.counter h1 {
    font-weight: 700;
    font-size: 3rem;
}

#count {
    font-weight: 500;
    font-size: 5rem;
}

.counter button {
    padding: 0 0.5rem;
    background-color: white;
    border: 2px solid black;
    border-radius: 0.5rem;
}