.container_statistics {
    padding: 4rem;
}

.graph-box {
    border-radius: 25px;
    border: 2px solid var(--default-border-color);
    height: 25rem;
    width: 100%;
    /*box-shadow: var(--default-shadow-box);*/
}

.number-of-people {
    display: flex;
    width: 100%;
    justify-content:space-between;
    gap: 2rem;
    font-size: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.number-of-people__counter{
    min-width: 140px;
    width: 30%;
    height: 30rem;
    border-radius: 25px;
    border: 2px solid var(--default-border-color);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;

}

.counter__value {
    color: var(--green);
}

.counter__plank {
    background-color: var(--light-grey);
    height: 2px;
    width: 80%;
}

.counter__information {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (max-width: 425px){
    .number-of-people__counter{

    }
}
