body,html {
    height: 100%;
    margin: 0;
    background-color: gainsboro;

}

.hero-image {
    background-image: url("ebanner.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-family: didot, serif;
    text-shadow: 2px 2px 2px #000;
    
}
img {
    border: 1px solid #ddd; /* Gray border */

}

/* Add a hover effect (blue shoadow) */
img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

div.gallery: hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height:auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
    .gallery {
        text-align: center;
    }
}

.bottomnav {
    background-color: transparent;
    text-align: center;
    padding: -100px;
}

p.contact {
    text-align: center;
}