body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  width: 100vw;
  min-height: 100vh;
  background-color: white;
}

body #header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(background.jpg);
  background-position: center;
  background-color: #0e67a3;
  width: 100vw;
  height: 273px;
}

body #header h1 {
  padding-left: 150px;
}

body #header div {
  padding-right: 0px;
  padding-left: 20px;
  margin-bottom: -5px;
}

body #header div img {
  border: 2px solid #001844;
  margin-left: 200px;
  margin-right: 200px;
}
body #header div a {
  color: black;
  font-size: 22px;
}

body #nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #001844;
  border-left: none;
  border-right: none;
  width: 100vw;
  background-color: #79bacf;
}

body #nav a {
  z-index: 1;
  margin-top: -24px;
  margin-bottom: -24px;
  border: 2px solid #001844;
  background-color: #0e67a3;
  font-size: 24px;
  padding: 10px 30px;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  color: black;
}

body #nav a:hover {
  background-color: #79bacf;
}

body #nav .selected {
  background-color: #79bacf;
}

body #main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #b6e2ff;
  width: 100vw;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body #main #text {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: justify;
  padding-left: 160px;
  padding-right: 160px;
  font-size: 20px;
  height: auto;
  margin-left: 100px;
  margin-right: 100px;
}

body #footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #001844;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100vw;
  height: 100px;
  background-color: #79bacf;
}

body #footer div {
  font-size: 20px;
  padding: 10px 30px;
  margin-left: 20px;
  margin-right: 20px;
}

body #footer a {
  color: black;
}

body #footer a:link {
  text-decoration: underline;
}

body #info {
  border: 2px solid #001844;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100vw;
  height: auto;
  background-color: #79bacf;
  font-size: 20px;
  margin-left: 100px;
  margin-right: 100px;
}
body #info div{
  padding-left: 120px;
  padding-right: 120px;
  background-color: 79bacf;
}
.img-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 500px 500px;
      grid-template-columns: 500px 500px;
  gap: 20px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 26px;
}

ul {
  list-style-type: circle;
}

img {
  border: 2px solid #001844;
}
/*# sourceMappingURL=style.css.map */