.white {
  color: #fff; }

.black {
  color: #000; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s; }

html {
  box-sizing: border-box; }

body {
  font-family: "Lora",serif;
  font-weight: 300;
  color: white;
  -webkit-font-smoothing: antialiased;
  background: url(../img/spruce-bg.jpg) no-repeat center center fixed black;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

a {
  transition: opacity .25s ease-in-out;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid white;
  padding-bottom: 2px; }
  a:hover {
    opacity: .6; }

.bg-dark {
  background-color: rgba(0, 0, 0, 0.8); }

.bg-mid {
  background-color: rgba(0, 0, 0, 0.5); }

.squiggle {
  background: url(../img/squiggle.png) center bottom no-repeat;
  height: 20px; }

li {
  width: 40px;
  height: 40px;
  line-height: 2; }
  li:hover > a, li a:hover {
    opacity: .6; }
  li a {
    border-bottom: none; }
