.usertotals {
    padding: 25px 16px;
    border-radius: 16px;
    box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.25);
    background-color: rgba(240, 240, 240, 0.3);
    display: flex;
    max-width: 575px;
    justify-content: space-around;
}
.usertotals .image {
    width: 100px;
    height: 100px;
    background-size: cover;
    border-radius: 50%;
}
.usertotals .totals-container {
    width: 65%;
}
.usertotals .totals-title {
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.24px;
    color: #0D4962;
    margin-bottom: 15px;
}
.usertotals .totals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.usertotals .metrics-container {
    width: 100%;
}

/* DARK MODE */
.dark .usertotals {
    background-color: rgba(14, 181, 254, 0.14);
}
.dark .usertotals .totals-title {
    color: rgba(240, 240, 240, 0.87);
}