* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 10;
}
/* Adds red circle emoji before h2 */
h2::before {
	content: "\1F534";
}
/* Adds clown emoji before list elements on balloons page*/
div.balloons li::before {
	content: "\1F921";
}
.toplogo {
  background-color: #EBAC00;
  padding: 10px;
}
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #9E1D32;
}
/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Change topnav color on hover */
.topnav a:hover {
  background-color: #EBAC00;
  color: white;
}
.topnav a.selected {
  color:#9E1D32;
  background-color: #EBAC00
}
.ulNav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ulNormal {
  list-style: disc inside;
}
/* Style the content */
.content-container {
  display: flex;
  flex-direction: row;
}
.content1 {
  background-color: #ffffff;
  padding: 10px;
  flex: 10%;
}
.content2 {
  background-color: #ffffff;
  padding: 10px;
  flex: 80%;
}
.content3 {
  background-color: #ffffff;
  padding: 10px;
  flex: 10%;
}
/* Style the footer */
.footer-container {
  display: flex;
  flex-direction: row;
}
.footer1 {
  background-color: #EBAC00;
  padding: 20px;
  flex: 33%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.footer2 {
  background-color: #EBAC00;
  padding: 10px;
  flex: 33%;
}
.footer3 {
  background-color: #EBAC00;
  position: relative;
  padding: 10px;
  flex: 33%;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.right {
  float: right;	
}
.left {
  float: left;
}
.bottomImage {
	position: absolute;
    width:80%;
	/*max-height: 300px;*/
    right:0;
    bottom:0;
}
@media only screen and (max-width: 800px) {
  .topnav a {
    float: none;
    width: 100%;
  }
 .content-container {
  flex-direction: column;
  }
 .footer-container {
  flex-direction: column;
}
 .bottomImage {
  display: none;
}
}