

/*
font-family: 'Abel', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Advent Pro', sans-serif;
font-family: 'Marvel', sans-serif;
font-family: 'Lekton', sans-serif;

*/
body {
  background-color: white;
  background: url("otter.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: contain;  
}

.footer {
  position: absolute;
  top: 80%;
  left: 0;
  height: 20%;
  right: 0;
  font-family: 'Marvel', sans-serif;
  text-align: center;
  color: #443b34;
  font-size: 8px;
     -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.footer h1{
  font-size: 30pt;
  margin-bottom: 0;
  padding: 0;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}