.counter-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    max-width: 50vw;
    margin: auto;
}

.counter-container:hover {
    cursor: default;
}

.counter {
    display: flex;
    flex-direction: column;
    background-color: rgb(39 39 39 / 82%);
    height: 80px;
    width: 80px;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
    border: 8px rgb(45 45 45 / 85%) solid;
    transition: all 0.6s ease-in-out;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 0.8em;
}

.counter span {
    font-family: fantasy;
}

.counter .label {
    text-transform: uppercase;
    margin-top: 5px;
    font-size: 0.8em;
}

.counter-container:hover .counter {
    border-color: rgb(45, 45, 45);
    box-shadow: rgb(73 142 241 / 23%) 0px 0px 18px 5px;
}

@media (max-width: 768px) {
    .counter-container {
        max-width: 90vw;
    }

    .counter {
        height: 60px;
        width: 60px;
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .counter-container {
        max-width: 100vw;
    }

    .counter {
        height: 50px;
        width: 50px;
        font-size: 0.6em;
    }
}