#gallery {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h2 {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.galCont {
    
    border: 0.1rem solid black;
    border-left: none;
    padding: 1rem;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    row-gap: 0.1rem;
    column-gap: 0.1rem;
}


.galCont img {
    max-height: 7rem;
    max-width: 7rem;
    aspect-ratio: 1/1;
    object-fit: cover;

    transition: 0.2s;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    background-color: rgba(150, 150, 150, 0.514);
    overflow: hidden;

    
    justify-content: center;
    align-items: center;
}

.popup img {

    position: absolute;
    
    top: 50%;
    left: 50%;
  
    transform: translate(-50%, -50%);
    
    max-width: 80%;
    max-height: 80%;
  
    object-fit: cover;
    border: 0.1rem solid rgb(255, 255, 255);
    
}

/* .galCont img:hover{
    transform: scale(1.02);
} */

.popup span{
    position: absolute;
    
    top: 5vh;
    right: 5vw;
  
    font-weight: bold;
    font-size: 6vh;
    cursor: pointer;
}