body {
  box-sizing: border-box;
  font-family: Arial;
  margin: 0;
  background-color: white;
  height: 100vh;
}

header {
  background-color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  color: #481212;
  font-weight: 300;
  margin-bottom: 10px;
}

img {
  -webkit-user-drag:none;
	-khtml-user-drag:none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

main {
  width: 800px;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #eee;
}

.btn {
  display: inline-block;
  background-color: firebrick;
  padding: 6px 12px;
  color: #fff;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  filter: brightness(1.1);
}

h3 {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 3px;
}

.address {
   margin-top: 30px;
   text-align: center;
}

.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;
}

h2 {
  margin-top: 30px;
  margin-bottom: 5px;
  font-variant: small-caps;
  text-align: center;
  color: #481212;
}

p {
  margin: 0;
}

@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: 480px) {
  .hes-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .map2 {
    position: relative;
   padding-bottom: 75%;
   height: 0;
   overflow: hidden;
   }
   .map2 iframe {
     position: absolute;
     top: 0;
     left: 0;		
     width: 100% !important;
     height: 100% !important;  	
   }

}
