/* 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 {                    /* Mess around with any of these settings! */
  background-color: beige;
  font-family: serif;
  color: black;
  margin: 40px;    
}

h1 {
  text-align: left;       /* Try center or right! */
  border: 2px solid blue; /* Make it thick or dashed! */
}

nav {
  margin: 20px 0;
}

img {               /* Mess around with any of these settings! */
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 10px auto;
}

footer {
  margin-top: 40px;
  font-size: 0.8em;
}
