@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


.flex-statbox {
    display: flex;

}

.flex-child {
    flex: 1;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px #e4d2d2;
    font-size: 15px;
    text-align: center;
    
}

.flex-child.stat1 {
    background-color: #44318D;
}

.flex-child.stat2 {
    background-color: #6C4AB6;
}

.flex-child.stat3 {
    background-color: #8860D0;
}

.flex-child.stat4 {
    background-color: #8D72E1;
    
}

p.stat-heading {
    font-size: 50px;
    text-align: center;
    font-family: 'Anton', sans-serif;
    margin-bottom: 10px;
}

