
main{
    width: 90%;
    padding: 5px;
    box-sizing: border-box;
    margin: 0 auto;
    min-height: calc(100vh - 211px - 58px);
    
}

.hes-gallery{
    display: grid;
    
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    padding: 10px;
}

.hes-gallery img {
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
   
}

.hes-gallery img:hover
{
    transform: scale(1.04);
    box-shadow: 2px 2px 6px #555;
   
}

/* Heading of */
h2{
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
    font-variant: small-caps;
    text-align: center;
    color: navy;
    background-color: rgb(176, 229, 230);
}

/*
p
{
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    text-align: justify;
    color: navy;
    
}

*/

@media (max-width: 800px) {
    main{
        width: 100%;
    }
    header img{
        width: 80%;
        object-fit: contain;
    }
    .hes-gallery{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .hes-gallery{
        grid-template-columns: 1fr 1fr;
    }
}
