div.tag {
    max-width: 10em;
    min-width: 10em;
    max-height: 10em;
    min-height: 10em;
    border: 0.0625em solid #b9cfb9;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

img.tag_img {
    height: 7em;
}

h4.tag_h4 {
    font-size: 1em;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    div.tag {
        max-width: 6.5em;
        min-width: 6.5em;
        max-height: 6.5em;
        min-height: 6.5em;
    }

    img.tag_img {
        height: 4em;
    }

    h4.tag_h4 {
        font-size: 0.8em;
        font-weight: 600;
    }
}

@media (max-width: 340px) {

    div.tag {
        max-width: 5em;
        min-width: 5em;
        max-height: 5em;
        min-height: 5em;
    }

    img.tag_img {
        height: 3em;
    }

    h4.tag_h4 {
        font-size: 0.6em;
        font-weight: 600;
    }
}