﻿

.flex-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: baseline;
}
.fg-item {
    width: 33%;
    min-height: 25vw;
    margin: 0.15vw 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: baseline;
    box-sizing: border-box;
    border: 5px ridge #ffebcd5e;
    transition: text-shadow 1s ease-in-out, border-color 1s ease-in-out, background-color 1s ease-in-out, box-shadow 1s ease-in-out;
}
    .fg-item:hover {
        border-color: #ffebcdFF;
        background-color: #FFF3;
        box-shadow: 1px 2px 5px #330a00;
    }
.fgi-name {
    user-select: none;
    /*font-size: 0.6rem;*/
    text-shadow: inherit;
}
.fgi-img {
    width: 90%;
    margin-bottom: 13px;
    box-shadow: inherit;
}
@media screen and (max-width: 1000px) {
    .fg-item {
        width: 49%;
        min-height: 35vw;
    }
    .fgi-name {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 600px) {
    .fg-item {
        width: 99%;
        min-height: 70vw;
    }
    .fgi-name {
        font-size: 1.4rem;
    }
}