
#gallery {
    background-color: #0E1720;
    padding: 50px;

}

.gallery:hover {
    opacity: 0.5;
    cursor: pointer;

}

#galleryContainer > img {
    border: 1px solid black;
    width: 38rem;
    height: 20rem;
    margin: 10px;
    line-height: 75px;
    border: 2px dashed grey;
}


#galleryContainer {
    background-color: whitesmoke;
    padding: 10px 10px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
}

.imgDiv {
    display: none; 
    position: fixed; 
    z-index: 2; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
}
.imgDivBox {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.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;
}  






