/* 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." */

header {
  text-align: center;
  padding: 10px;
}

/* style the topnav */
ul.topnav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #d7f5ab;
  justify-content: space-evenly;
}

/* style links in topnav */
ul.topnav li a {
  display: block;
  color: black;
  padding: 14px 16px;
  text-decoration: none;
}

/* change color on hover */
ul.topnav li a:hover {
  background-color: #d7f5ab;
  color: #334f1a;
}

body {
  background-image:
    url("/images/overlay.png"),
    url("images/www-zanda-photography-RBdE3jv5y68-unsplash.jpg");
  background-size: cover;
  color: darkgreen;
  font-family: Courier;
}

div.flex-container {
  display: flex;
  flex-direction: row;
}

div.flex-container > div {
  margin: 10px;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d7f5ab;
  text-align: center;
  padding: 8px;
  z-index: 1000;
}
