/* Style the header */

html {
	font-family: Arial;
}

header {
  background-color: #DDD;
  padding: 5px 30px;
  text-align: center;
  font-size: 24px;
  color: black;
  height: 30px;
}

body {
	width: 100%;
	min-height: 600px;
}

/* Create two columns/boxes that floats next to each other */
nav {
 background-color: #EEE;
  width: 100%-40px;
  clear: both;
  height: 20px;
  padding: 5px 20px;
}

/* Style the list inside the menu */
nav button {
  float: right;
  margin-right: 10px;
}

section{
	min-height:600px;	
	margin: 20px;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
width: 100%-40px;
background-color: #DDD;
  padding: 5px 30px;
  text-align: center;
  
}

/* 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;
  }
}