
.gallery_album{
    display: flex;
    flex-wrap: wrap;
    margin-top: 110px;
justify-content: center;
}
.album{
    width: 25%;
    height: 25vw;
    background-color: white;
    border: 8px solid black;
    position: relative;
    cursor: pointer;
}
.album img{
    width: 100%;
    height: 100%;
}
.album-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(219, 219, 219);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: rgba(0, 0, 0, 0.427);
    transition: .4S;
}
.album:hover .album-overlay{
    background-color: rgba(0, 0, 0, 0.627);

}
.footer{
    margin-top: 10vh;
color: #7d7d7d8e;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 10vh;
}
.footer h4{
    padding: 5px 0;
    font-size: 14px;
    text-transform: uppercase;
}
@media (max-width:800px) {
    .album{
        width: 50%;
        height: 50vw;
     
    }
}

.photo1:hover {
  filter: brightness(45%);
}
