{
  box-sizing: border-box;
}


/* Style the header */
header {
   -webkit-flex: 1;
  Background-color: #0247FE;
  padding: 80px;
  text-align: center;
  font-family: "Spectral", serif;
  color: #DBE5FF;
  font-size:20px;
 }

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

/* Style the navigation menu */
nav {
 -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #678FFE;
  padding: 30px;
  font-family: "Karla", serif;
  font-size:20px;
  color:#012998;
  
}


/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #DBE5FF;
  font-family: "Karla", serif;
    padding: 10px;
    margin-top:5px;
    margin-right:5px;
    margin-left:5px;
    margin-bottom:5px;
}

/* Style the table*/
 table, th, td{
    overflow-x:auto;
    background-color:#678FFE;
   border: 1px solid;
   font-size:18px;
   font-family: "Karla", serif;
   
  }

/* Style the footer */
footer {
   -webkit-flex: 1;
  background-color:#0247FE;
  border-color:#012998;
  padding: 10px;
  text-align: center;
  color: white;
}

img {
  border-color:#091534;
  border-width:5px;
  border-style:solid;
}
h3 {
    font-family: "Spectral", serif;
}
.citation {
    font-size:10px;
}
p {
    font-size:19px;
    color:#091534;
    font-family: "Karla", serif;
}
.flavor {
    text-align:center;
     margin-left:150px;
}
li {
    font-size:18px;
}
.indent {
    text-indent:5%;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */

@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }