body{
  background-image: url(./assets/Whangaehu.png);
    background-color:  black;
}
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 6 4px 8px;
    column-gap: 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    column-gap: 4px;
  }

  .header{
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
  }

  .header ul{
    text-align: center;
  }
  .header ul li{
    list-style: none;
    display: inline-block;
  }
.header ul li a{
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  font-family: 'Staatliches';
  letter-spacing: 2px;
  font-weight: 600;
  padding: 25px;
}
.header ul li a:hover{
  background: whitesmoke;
  color: black;
  border-radius: 25px;
}
.container {
    position: relative;
    width: 50%;
    margin: auto;
    top: 50%;
  right: -10%;
    
  }
  
  .image {
    display: block;
    width: 100%;
    height: 700 !important;
    width: 500px;
    
  }
  
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 665px;
    width: 500px;
    opacity: 0;
    transition: .5s ease;
    background-color: rgb(255,120,88);
  }
  
  .container:hover .overlay {
    opacity: .90;
  }
  
  .text {
    color: white;
    font-family: 'Staatliches';
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  