﻿.counter-display-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--blue-gray);
    /*border: 2px solid var(--light-gray);*/
    padding: 1em;
    aspect-ratio: 1;
    min-width: 12em;
    transition: transform 0.1s linear, background 0.1s ease-in-out;
}
    .counter-display-wrapper h3 {
        font-weight: 500;
    }
    .counter-display-wrapper h1 {
        font-size: 3rem;
        margin: 0.3rem;
        color: var(--primary-green);
    }