{
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-weight:bold;
  color: rgb(217, 98, 16);
}

a {
  color: rgb(217, 98, 16);
  background-color: transparent;
  text-decoration: none;
}
/* Style the header */
header {
  background-color: rgb(217, 98, 16);
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: white;
}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}


/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgb(270, 187, 33);
  padding: 20px;
  color: white;
  font-weight: bold;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: rgb(255, 255, 255);
  padding: 10px;
}

/* Style the footer */
footer {
  background-color: rgb(217, 98, 16);
  padding: 10px;
  text-align: center;
  color: white;
}

/* 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;
  }
}

