#gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1vw 3vw;
}

#gallery img {
    width: 300px;
    height: auto;
    border-radius: 0.4vw;
    transition: 0.3s;
    border: 0.3vw solid #7f8fa6;
    border-radius: 0.2vw;
    image-rendering: pixelated;
}

#gallery img:hover {
    transform: scale(1.08);
    border-color: #f4f4f4;
}

.infoRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artName {
    font-size: 2vw;
    color: #7f8fa6;
}

.artOpts {
    border: none;
    margin-top: -1vw;
    font-size: 2vw;
    color: #7f8fa6;
    padding: 0;
}

.artOpts:hover {
    background: none;
    color: #f4f4f4;
}

#artMenu {
    display: none;
    margin-top: 0.2vw;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c3e50;
    border: 0.1vw solid #7f8fa6;
    border-radius: 0.3vw;
    display: none;
    flex-direction: column;
    gap: 0.2vw;
    padding: 0.3vw;
    z-index: 2;
}

#artMenu.show {
    display: flex;
}