body{
    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%;
    
  }

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