@charset "UTF-8";

#photogallery{
  width: 100vw;
  height: auto;
  margin: 0 auto;
}

#photogallery h2:first-child{
  margin-top:70px;
}

#photogallery h2{
  font-size: 3rem;
  font-family: 'Architects Daughter', serif;
  margin-top:50px;
  text-align: center;
}

#photogallery h2::after{
  display: block;
  content: '';
  width: 40px;
  height: 2px;
  margin: 0 auto 10px;
  background: #c2c2c2;
}

#photogallery .under-p{
  text-align: center;
  font-size: 0.75em;
  margin-top: -5px;
  margin-bottom: 10px;
}

.hes-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 10px;
  columns: 4;
}

.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;
}



@media screen and (max-width:769px) {
  .hes-gallery {
    width: 100vw;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    padding: 0px;
    columns: 2;
  }

  #photogallery h2:first-child{
    margin-top:0;
  }

  #photogallery h2{
    font-size: 3rem;
  }
}
