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

html,
body {
}

body {
    display: flex;
    font-family: "Nunito Sans", sans-serif;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    background-color: #141414;
    color: white;
    font-weight: bold;
    font-size: 36px;
}

#big_kahoona {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    max-width: 1024px;
    margin-top: 48px;
}

#big_kahoona p {
    font-size: 48px;
}

#individual_counters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    max-width: 800px;
    gap: 12px;
}

.counters {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    border: 1px solid #dcdcdc22;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 24px;
}

.counter p {
    font-size: 24px;
    margin-top: 12px;
    color: #22c55e;
}

#by_country {
    margin-top: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 800px;
    column-gap: 40px;
    row-gap: 10px;
}

.country_counters {
    max-width: 90%;
}

.country {
    display: flex;
    font-size: 16px;
    flex-flow: row nowrap;
    align-items: center;
    width: 60px;
}

.country > p {
    margin: 0 0 0 12px;
}
