#stats {
    min-width: 300px;
    max-width: 700px;
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0 auto;
    margin-top: 50px;

    flex-direction: column;

    border: 1px solid rgb(55, 55, 55);
    border-radius: 5px;
}

#stats > .title {
    width: 100%;
    height: 50px;

    align-items: center;
    justify-content: center;

    font-size: 34px;
    font-weight: 500;
    color: #DDD;
}

#stats > .stat {
    width: 100%;
    height: auto;
    padding: 0 5px;
    margin-top: 10px;

    align-items: center;
    justify-content: space-between;
}

#stats > .stat .name {
    font-size: 28px;
    color: #DDD
}
#stats > .stat .value {
    font-size: 25px;
    color: #DDD
}