body {
  background-color: white;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  padding: 0;
  margin: 0;
  flex: 1;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  font-family: Oswald-Light;
  font-size: xx-large;
}

h3 {
  font-family: Work_Sans;
}

.side_image {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 5.5%;
  padding-right: 5.5%;
}

.about_text {
  padding-left: 20%;
  padding-right: 20%;
  flex: 1;
  font-size: large;
  text-align: center;
}

.image_text {
  padding-left: 5%;
  padding-right: 5%;
  flex: 1;
  font-size: large;
  text-align: center;
}

.image {
  height: 430px;
  width: 49%;
}

.seuss_body {
  font-size: medium;
  padding-left: 2%;
  padding-right: 2%;
}

@font-face {
  font-family: Oswald; /* set name */
  src: url(Oswald/static/Oswald-Medium.ttf); /* url of the font */
}

@font-face {
  font-family: Oswald-Light; /* set name */
  src: url(Oswald/static/Oswald-Light.ttf); /* url of the font */
}

@font-face {
  font-family: Crimson_Text; /* set name */
  src: url(Crimson/Crimson_Text/CrimsonText-Regular.ttf); /* url of the font */
}

@font-face {
  font-family: Work_Sans; /* set name */
  src: url(Work_Sans/static/WorkSans-Medium.ttf); /* url of the font */
}

.banner {
  background-color: #500000;
  color: white;
  font-family: Oswald;
  padding: 12px;
  text-align: center;
  text-decoration: none;
}

.bottom_banner {
  background-color: #500000;
  color: white;
  font-family: Oswald;
  padding: 6px;
  text-align: center;
}

.navbar ul {
  display: flex;
  list-style-type: none;
  background-color: white;
  padding: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  margin: 0;
  overflow: hidden;
  border-color: #D6D3C4;
  border-style: solid;
  justify-content: center;
}

.navbar a {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-align: center;
}

.navbar a:hover {
  color: #707070;
}

.navbar li {
  float: left;
}