.flex.spaceAround {
    justify-content: space-between;
}

.statItem {
    padding: 20px;
    background: white;
    margin-top: 30px;
    border-radius: 15px;
    width: 220px;
    text-align: center;
    width: 26%;
}

#Dashboard .chartSection{
    margin-top: 50px;
}

#Dashboard .entryLine {
    justify-content: space-between;
}

#Dashboard .entryLine>div,
#Dashboard .entryGroup>div {
    width: 100px;
    flex-grow: 0;
}

#Dashboard .entryLine>div:first-of-type,
#Dashboard .entryGroup>div:first-of-type {
    width: 190px;
}






@media screen and (max-width: 600px) {
    .flex.spaceAround {
        flex-direction: column;
    }

    .statItem {
        display: flex;
        width: 85%;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
    }
}