#gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}

#gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    vertical-align: top;
    margin: 20px;
}


#gallery a {
    background-image: none;
}

div.thumb {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 1rem;
}

.overlay {
    display: none;
    border-radius: 5%;
}

div.thumb:hover .overlay {
    display: flex;
    position: absolute;
    width: 200px;
    height: 200px;
    background: black;
    opacity: 0.7;
    top: 10%;
    left: 10%;
}

#gallery h4 {
    width: 150px;
    color: white;
    text-align: center;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}

/* add mobile views */

/* add cool hover w title */