@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');

html {
    
    display: block;

}

body {
 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: 'Roboto Mono', sans-serif;
    display: block;
    margin: 8px;

    color: #acb8b4;

}

html, body {
    height: 90%;
    margin: 0;
    padding: 0;
}

h1 {
    text-transform: uppercase;
}

h1, p, a {

    color: #ffffff;

}

.zoom_in {
    animation: zoominoutsinglefeatured 1s forwards;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(0,0);
    }
    100% {
        transform: scale(1,1);
    }
}
  
@keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
} 

a {
    text-decoration: none;
    -webkit-transition: color .25s ease;
    -o-transition: color .25s ease;
    transition: color .25s ease;
}

a:hover {
    color: #ffffff;
}

main {

    max-width: 800px;
    top: 60%;
    margin: 0 auto;
    padding: 10px;
    display: block;
    position: relative;
    transform: translate(0, -70%);
    display: block;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    background-color:rgba(0, 0, 0, 0.5);

}

div.photo_credits {

    float: right;
    margin: 0;
    padding: 0;
    font-size: 0.5em;
    margin-right: 10px;

}

ul {
    margin-right: 0;
    padding: 0;
}

li {
    display: inline-block;
}

canvas {
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
}

footer, main {
    text-align: center;
}
