/* nav starts */
nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(0, 174, 255);
  grid-area: nav;

}
ul{
   list-style-type: none;
}
li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: blue;
}
/* nav ends */
body{
    text-align: center;
}
body{
  background-image:url("images/Savin-NY-Website-Background-Web.jpg");
}


footer {
  align-items: flex-end;
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: rgb(0, 174, 255);
      color: white;
      text-align: center
  }
