.album_grid_wrapper {
    display: grid;
    gap: 50px 50px;
    grid-template-columns: auto auto auto;    
}

@media screen and (max-width: 1400px) {
    .album_grid_wrapper {
        display: grid;
        gap: 40px 40px;
        grid-template-columns: auto auto;    
    }
}

@media screen and (max-width: 736px) {
    .album_grid_wrapper {
        display: grid;
        gap: 30px 30px;
        grid-template-columns: auto auto;    
    }
}

@media screen and (max-width: 790px) {
    .album_grid_wrapper {
        display: grid;
        gap: 25px 25px;
        grid-template-columns: auto;    
    }
} 

.album_cover {
    width: 100%;
    height: 100%;
    min-width: 200px;
    min-height: 200px;
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding-top: 80px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.album_cover:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.image_cover {
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.image_cover:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.image_grid_wrapper {
    display: grid;
    column-gap: 20px;
    grid-template-columns: auto auto auto auto;    
}

@media screen and (max-width: 1280px) {
    .image_grid_wrapper {
        display: grid;
        column-gap: 20px;
        grid-template-columns: auto auto auto;    
    }
}

@media screen and (max-width: 736px) {
    .image_grid_wrapper {
        display: grid;
        column-gap: 15px;
        grid-template-columns: auto auto;    
    }
}

@media screen and (max-width: 600px) {
    .image_grid_wrapper {
        display: grid;
        column-gap: 0px;
        grid-template-columns: auto;    
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    cursor: pointer;
  }
  
  /* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
}
  
  /* Add Animation */
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
  
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
  
  /* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
  
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
  
  /* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}