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

html {
  background-color: black;
  color: white;
}

body {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1,
header {
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header {
  font-size: larger;
  padding-bottom: 5px;
}

li {
  margin-bottom: 3px;
}

a {
  color: gray;
}

header a {
  color: white;
}

div {
  background-color: #1f1f1f;
  border-radius: 6px;
  border: 2px solid white;
  margin: 0px 40px 40px;
  padding: 10px 20px;
}

img {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}
