
<style>
/* h1  {color:rgb(207, 28, 68); text-align:center; font-size:500%; }*/
    
/*three picture formatting style */
* {
  box-sizing: border-box;
}
   
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}
/*end of three picture style*/    
/*begining of navigation bar style*/    
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:rgb(207, 28, 68);
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}
/*end of navigation bar style*/  
</style>
