nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #004554;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

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

nav a:hover {
  background-color: #005061;
}
body {
  color: #000000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004554;
  height: 40px;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
}

.logo img {
  height: 250px;
  margin-left: 0;
}

/* For screens with a width of 800px or less */
@media (min-width: 801px) {
  /* Hide the navigation button */

    .w3-sidebar {
    display: none;
    visibility: hidden;

  }
    .w3-bar-item {
    display: none;
    visibility: hidden;

  }
    .w3-button {
    display: none;
    visibility: hidden;

  }

  .w3-container{
        display: none;
    visibility: hidden;

  }


}


/*############################################################*/

/* For screens with a width of 800px or less */
@media (max-width: 800px) {


/*Hides navigation*/
  nav {
    display: none;
    visibility: hidden;

  }

.w3-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004554;
  height: 40px;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;


}

.w3-button{
  display: flex;
  height: 40px;
  width: 40;
    top: 0;
  left: 0;
  padding: 10px;
  background-color: #015264;
  background: #015264;


}






}

.vertical-img{

  height: 150;
  width: 80;
}

/*grid view*/

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1 / 5;
  grid-row: 1/4;
}
.two {
  grid-column: 2 / 4;
  grid-row: 4 / 3;
}
.three {
  grid-column: 1;
  grid-row: 4 / 5;
}
.four {
  grid-column: 3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 3;
  grid-row: 4;
}

h1 {
  
  font-size: 35px;
  line-height: 1.8em;
  color: #015264;
}