ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2em;
    justify-content: center;
    padding: 2em;
    max-width: 1400px;
    margin: 0 auto;
}
ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid #75B08B;
    border-radius: 8px;
    padding: 1.5em;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease-in-out;
    list-style: none;
    width: 100%;
}
ul li:hover {
    transform: scale(1.02);
}
ul h3 {
    margin-top: auto;
    padding-top: 0.75em;
    font-size: 1.75em;
    text-align: center;
}
.img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 0.5em;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

#enlarged {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 2em;
}

#enlarged.active {
    display: flex;
}

#enlarged img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}
