body {
  font-weight: bold;
  text-align: center;
}

h5 {
  text-align: right;
}

td{
  max-width: 200px;
}


#didyouknow {
  background-color: white;
  font-size: 20px;
  margin: 10%;
  border-radius: 8px;
  opacity: 10%;
}

#welcomeMessage{
  padding-left: 15%;
  padding-right: 15%;
}

#container {
  background-color: white;
  font-size: 20px;
  margin: 10%;
  border-radius: 8px;
  opacity: 10%;
}

#fun {
  background-color: Lightgray;
  font-size: 20px;
  margin: 5%;
  border-radius: 8px;
}

/*flexbox css and html scaffolding from https://css-tricks.com/snippets/css/a-guide-to-flexbox/*/
.wrapper {
  display: flex;
  flex-flow: row wrap;
}

#headline {
 /*  display: -webkit-flex;
   display: flex;
   -webkit-flex-direction: row /* works with row or column */
   flex-direction: row;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
   position: relative;
   margin: -12px;
}

#eventPicture, #peoplePicture {
  display: flex;
  justify-content: center;
}

#headlineImg {
  position: relative;
  top: 21px;
  left: -284px;
  margin-bottom: 15px;
}

#headlineText {
  position: relative;
  top: -27px;
  left: 40px;
  margin: -29px;
  margin-bottom: 0px;
}

#eventMain {
  max-width: 600px;
}

#peopleMain {
  max-width: 90%;
  margin-top: 3%;
  margin-left: 13%;
  margin-right: 13%;
}

#signUpsheet {
  max-width: 35%;
  margin-left: auto;
  margin-right: auto;
}

#aboutus{
  width: 55%;
  margin-right: auto;
  margin-left: auto;

}

.people{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  margin: 5%;
}

.about {
  width: 275px;
}
/* We tell all items to be 100% width */
.header, .main, .nav, .aside, .footer {
  flex: 1 100%;
}
.header {
  background-color: silver;
  border-radius: 10px 10px 0px 0px;
}
.main {
  font-weight: normal;
  background-color: silver;
  border-radius: 5px;
  margin: 10px;
  min-width: 300px;
}

.aside {
  background-color: #36b0b6;
  border-radius: 5px;
  margin: 5px;
  max-width: 400px;
}
.footer {
  background-color: #36b0b6;
  border-radius: 0px 0px 10px 10px;
  margin: 0px;
  padding: 0px 15px 15px 0px;
}

.footer h5 {
  margin-top: 5px;
  margin-bottom: -5px;
}

/* Medium screens */
@media all and (min-width: 600px) {
  /* We tell both sidebars to share a row */
  .aside { flex: 1 auto; }
}

/* Large screens */
@media all and (min-width: 800px) {
  /* We invert order of first sidebar and main
   * And tell the main element to take twice as much width as the other two sidebars
   */
  .main { flex: 2 0px; }

  .section-1 { order: 1; }
  .main    { order: 2; }
  .section-2 { order: 3; }
  .footer  { order: 4; }
}
