/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #FFF5B5;
  background-image: url("pompom_bg.jpg");
}

h1 a {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
}

header {
  text-align: center;
  margin-bottom: 10px;
  background-color: #ED9C2B;
}

nav ul {
  overflow: hidden;
  margin: auto;
  font-family: "Azeret Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  width: 50%;
}

nav li{
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

header a:link, header a:visited {
  text-decoration: none;
  color: #412722;
}

nav a:active {
  color: white;
}

main {
  max-width: 70%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Azeret Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #412722;
}

main ul {
  list-style-type: disc;
  padding-left: 30px;
  font-size: 15px;
}

main h2 {
  font-size: 30px;
  margin: 10px;
}

main p {
  font-size: 15px;
  padding-top: 10px;
}

footer {
  margin-top: 30px;
  background-color: #ED9C2B;
}

footer p {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}