body {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 80px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid cadetblue;
    border-radius: 7px;
    margin: 15px;
    padding: 10px;
}

@media screen and (max-width: 900px) {
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid cadetblue;
        border-radius: 7px;
        margin: 15px;
        padding: 10px;
    }
}

.field-tooltip {
    position: relative; /* making the .tooltip span a container for the tooltip text */
}

.field-tooltip:before {
    content: attr(data-text); /* here's the magic */
    position: absolute;

    /* vertically center */
    top: 50%;
    transform: translateY(-50%);

    /* move to right */
    left: 40%;
    margin-left: 15px; /* and add a small left margin */

    /* basic styles */
    width: 250px;
    padding: 10px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-align: center;
    opacity: 0.6;
    display: none; /* hide by default */
}

.field-tooltip:hover:before {
    display: block;
}

.counter-element {
    display: flex;
    flex-direction: column;
}

.counter-element button {
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}