:root {
    --widget-border-radius: 16px;
}

html {
    color: #515151;
    font-family: sans-serif;
    font-size: 12px;
}
.pagewrap {
    margin: 0 auto;
    width:90%;
}
.heading {
    font-size: 24px;
    font-weight: bold;
    color: #212121;
    text-align: center;
    margin: 20px;
}

.stat-widget {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    flex-basis: 25%;
    position: relative;
    padding: 16px;
    background: #f3faf4;
    box-shadow: 4px 4px 10px 1px #e9e9e9;
    border-radius: var(--widget-border-radius);

}
.stat-widget .label {
    display: block;
    font-size: 14px;
    padding-top: 5px;
    color: #717171;
    text-align: center;
}
.stat-widget .value {
    display: block;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}
.stat-widget .icon {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 22px;
    color: #515151;
}
.stat-widget .units {
    font-size: 16px;
}

.stat-widget .label-pair {
    align-self: center;
}