* {
    margin: 0;
    padding: 0;
}

body {
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: sans-serif;
    color: #fff;
}

h1 {
    font-size: .8rem;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

h1::before {
    content: '';
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: #3fb950;
}

.stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    text-align: center;
}

.num {
    font-size: 2rem;
    font-weight: 600;
}

.label {
    font-size: .8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .05em;
}
