/* ✦ GLOBAL LAYOUT ✦ */
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  background-color: #1f1f1f;
  color: #e0dfd5;
  /* other styles */
}

/* ✦ HEADINGS ✦ */
h1, h2, h3 {
  text-align: center;
  margin-bottom: 1em;
}

/* ✦ PARAGRAPH TEXT ✦ */
p {
  margin-bottom: 1.2em;
  text-align: center;
}

/* ✦ NAVIGATION ✦ */
nav {
  text-align: center;
  margin-bottom: 2em;
}
nav a {
  color: #a0c4a8;
  text-decoration: none;
  margin: 0 12px;
}
nav a:hover {
  text-decoration: underline;
}

/* ✦ LINKS ✦ */
a {
  color: #e0dfd5;
}
a:hover {
  color: #ffffff;
}

/* ✦ IMAGES ✦ */
img {
  display: block;
  margin: 30px auto;
  width: 100%;
  max-width: 700px;
  border-radius: 6px;
}

/* ✦ THUMBNAILS ✦ */
.thumbnail {
  width: 300px;
  border-radius: 50%;
  margin: 30px auto 10px auto;
  display: block;
}

/* ✦ FOOTER ✦ */
footer {
  text-align: center;
  font-size: 0.8em;
  color: #777;
  margin-top: 60px;
}