
body {
    font: .7em Arial, Helvetica, sans-serif;
    background-color: black;
    margin:0;
    }
    
#container {
    max-width:600px;
    min-height: 95vh;
    margin:auto;
    }

h1 {
    font-family: 'Satisfy', cursive;
    color: white;
    font-size:50px;
    line-height: 70px; text-align: center;
    margin:0; padding:0;
}

nav {
    text-align: center;
    float: left;
    width: 10%;
    }
 
 .material-icons {
    font-size: 40px;
    color: #404040;
    animation: fadeIn ease-in 3s; 
  }
 .material-icons:hover {color: white; cursor: pointer;}

section {
    margin-bottom: 50px;
    width: 80%;
    float: left;
    }
 
footer {
    text-align: center;
    clear: left;
    color: white;
    animation: toTop ease-in 3s;
    }

footer p {line-height: 40px;}

ul {
    list-style-type: none;
    width: 80%; padding:0; margin:auto;
    }

img {
    width: 95%;
    display:block;
    margin:auto;
    border-radius: 10px;
    animation: fadeIn ease-in 3s;
    }

figcaption {
    color: white; text-align: right; font-size: .6em;
    position: relative; bottom:2vh; right:5%; opacity:.4;
    animation: fadeIn ease-in 3s;
}

li {
    display:block;
    max-width: 500px;
    margin:auto;
    color:white;
    position: relative;
    animation: toTop ease-in 3s;
}

li p:first-child, li p:last-child, header, footer {
  font-style:italic;}


.fb-like {
 position: absolute;
 top: 3vh; left: 4%;
}

@keyframes toTop {
    from {top: 500px; opacity:0;}
    to {top: 0px; opacity:1;}
}

@keyframes fadeIn {
    from {opacity:0;}
    to {opacity:1;}
}