/* CSS Document */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;  /* solid color */
  color: #b9a692;
  text-align: center;
  padding: 1em 0;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
}

body {
  margin: 0;
  padding-bottom: 18px; /* prevent content from hiding under footer */
}
