﻿* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  background-color: #white;
  padding: 30px;
  text-align: center;
  font-size: large;
  color: #C6790B;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 20%;
  background: #white;
  padding: 20px;
  text-align: center;
  font-size: large;
  color: #C6790B;

}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: left;
  padding: 20px;
  width: 70%;
  background-color: #white;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #white;
  padding: 10px;
  text-align: center;
  color: #C6790B;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}
h2, h3 {
	color: #663300;
	text-align: center;
}
p {
	padding-right: 20px;
	padding-left: 20px;
}
hr {
      width: 75%;
}