@charset "UTF-8";

/* Global Styles */
* {
  box-sizing: border-box;
}

article, aside, footer, header, main, nav, section {
  display: block;
}

/* Body Structure */
body {
  margin: 0;
  padding: 0;
  font: ;
}

/* Navigation */
/* Style the navigation menu */
nav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
nav #menu {
  display: none;
}

/* Style navigation menu links */
nav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
nav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
nav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: maroon;
  color: white;
}

/* Header */
header {
  background-color: tan;
  height: 200px;
}

button {
  background-color: tomato; 
  padding: 10px; 
  border-radius: 10px;
}

/* Page Structure */
.wrapper {
  text-align: center;
}

.wrapper>* {
  flex: 1;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
}

.main {
  background-color: deepskyblue;
}

.main p {
  width: 70%;
  margin: auto;
  padding-bottom: 10px;
}

.aside1 {
  background-color: gold;
  padding-bottom: 20px;
  text-align: center;
}

.aside1 > ul {
  display: inline-block;
}

.aside2 {
  background-color: hotpink;
  padding-bottom: 20px;
}

aside h3 {
  text-align: center;
}

aside ul {
  width: 40%;
  margin: auto;
}

div.parent {
  text-align: center;
}

ul.overview {
  display: inline-block;
  text-align: left;
  list-style-type: none;
}

/* Footer */
footer {
  background-color: lightgreen;
  text-align: center;
  height: 80px;
  padding: 15px;
}
