/* Gallery Code */
.gallery-flexbox {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}
.gallery {
    display: inline-block;
    border: 2px solid hsl(210, 13%, 5%);
    margin: 5px;
    width: 30%;
    text-align: center;
    transition: border 65ms;
}
.gallery a img {
    width: 100%;
}
.pixelart {
    image-rendering: pixelated;
}
.description {
    font-family: "Satisfy", serif, Arial;
    font-weight: 400;
    font-style: normal;
}
.gallery:hover {
    border: 4px solid hsl(210, 13%, 0%);
}

/* Switch to a two column design for smaller screens */
@media (max-width: 600px) {
    .gallery {
        width: 40%;
    }
}

/* Switch to a four column design for larger screens */
@media (min-width: 1240px) {
    .gallery {
        width: 22%;
    }
}