/*
The orange: rgb(255,169,1)
The green: rgb(34,123,34)
*/

body {
	background-color: OldLace;
	color: Black;
	font-family: Trebuchet, Tahoma, sans-serif;
}

h2, h3, h4 {
	color: ForestGreen;
}

a:link {
	color: Blue;
}

a:visited {
	color: MediumSlateBlue;
}

* {
  box-sizing: border-box;
}

/* Style the header */
header {
  background-color: rgb(34,123,34);
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: White;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 20%;
  background: OldLace;
  padding: 20px;
  height: auto;
 
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: left;
  padding: 20px;
  width: 60%;
  background-color: OldLace;
  height: auto;
}

aside {
  float: left;
  width: 20%;
  background: OldLace;
  padding: 20px;
  height: auto;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: OldLace;
  padding: 10px;
  text-align: center;
  color: Black;
}

/* 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, aside {
    width: 100%;
    height: auto;
  }
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: HoneyDew; 
  color: black; 
  border: 2px solid ForestGreen;
  border-radius: 8px;
}

.button1:hover {
  background-color: ForestGreen;
}

