body {
  font-family: 'Open Sans', sans-serif;
  /* font-family: Helvetica Neue,Helvetica,Arial,sans-serif; */
  color: #333;
  /* background-color: rgb(253, 253, 253); */
  background-color: white;
  margin: 0;
  padding: 0;
}

a {
  color: white;
  text-decoration: none;
}
a:visited {

}

h2 {
  font-size: 40px;
  text-align: left;
}

h3 {
  font-size: 25px;
  text-align: center;
}

.navLink {
  transition: all 00ms ease-in;
}
.navLink a:hover {
  color: #fdffab;
}


.button:hover {
  background-color: #0b4b77;
  color: white;
}

.darkLink {
  color: #0075c3;
}

.fullScreenBar {
  border: 0px solid black;
  height: auto;
  width: 100%;
  background-color: rgba(51, 51, 51, 1);
  color: white;
  box-shadow:0px 4px 4px rgba(0, 0, 0, 0.184);
  z-index: 4;
}

.navBar {
  border: 0px solid black;
  border-bottom: 0px solid gray;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 0px;
  padding-top: 0px;
  width: 100%;
  height: 0;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
}
.navBar li {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
}

.navShown {
  height: auto;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 0px solid gray;
  font-size: 20px;
}

#headerBar {
  position: fixed;
}

/* #ham {
  font-size: 30px;
} */

@media only screen and (min-width: 767px) {
  h3 {
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .hamburger {
    display: none;
  }

  .navBar {
    height: auto;
    padding-bottom: 14px;
    padding-top: 14px;
  }
  .navBar li {
    display: inline;
  }

  #headerBar {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 1023px) {
  h3 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}