{
  box-sizing: border-box;
}
.fixed-nav-bar { position: fixed; top: 0; left: 0; z-index:1; width: 100%; height: 15px; background-color:#F9B76C; color:#32200A; }
/* Style the header */
header {
   -webkit-flex: 1;
  Background-color: #F3860A;
  padding: 30px;
  text-align: center;
  color:#F9B76C;
 }

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

/* Style the navigation menu */
nav {
 -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color:#F9B76C;
  color:#32200A;
  padding: 20px;
  font-size:20px;
}


/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color:#FDECD8;
  padding: 10px;
  font-size:12;
}

/* Style the table*/
 table{
    overflow-x:auto;
    
  }

/* Style the footer */
footer {
   -webkit-flex: 1;
  padding: 10px;
  text-align: center;
  background-color:#F9B76C;
  color:#32200A;
}
h1 {
    color:#935106;
}
p {
    color:#32200A;
    font-size:25;
}
body {
  font-family: Muli, sans-serif;
  font-size: 16px;
}

h1 {
  font-family: "Space Mono", monospace;
  font-size: 46px;
}
.special {
    color:#FDECD8;
}
/* 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;
  }