

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  background-color: #292929;
}

body {
  width: 70%;
  margin: 0 auto;
}



h1, h2, h3 {
  font-family: 'Sonsie One', cursive;
  color: #2a2a2a;
}

p, input, li {
  font-family: 'Open Sans Condensed', sans-serif;
  color: #2a2a2a;
}

h1 {
  font-size: 4rem;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px black;
}

h2 {
  font-size: 3rem;
  text-align: center;
}

h3 {
  font-size: 2.2rem;
}

p, li {
  font-size: 1.6rem;
  line-height: 1.5;
}



nav, article, aside, footer {
  background-color: white;
  padding: 1%;
}

nav {
  height: 50px;
  background-color: #00b80f;
  display: flex;
  margin-bottom: 10px;
}

nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}

nav a {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}
nav a:hover {
  background-color: #289130;
}

nav form {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2em;
}

input {
  font-size: 1.6rem;
  height: 32px;
}

input[type="search"] {
  flex: 3;
}

input[type="submit"] {
  flex: 1;
  margin-left: 1rem;
  background: #333;
  border: 0;
  color: white;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 20px 0;
}

.logo {
  align-content: center;
  display: block;
  margin: 0 auto;
}



main {
  display: flex;
  min-height: 80vh; 
}

article {
  flex: 4;
}

aside {
  flex: 1;
  margin-left: 10px;
  background-color: #00b80f;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

aside li {
  padding-bottom: 10px;
}

footer {
  margin-top: 10px;
}

.profile-picture {
  height: 100%;
  width: 100px;
}

@media (max-width: 768px) {
  aside {
    display: none;
  }
  main {
    flex-direction: column;
  }
  body {
    width: 100%;
    margin: 0;
  }
}