@import url(http://fonts.googleapis.com/css?family=Montserrat);
@import url(http://fonts.googleapis.com/css?family=Open+Sans);

h1 {text-align: center;
    color: black;
    font-size: 72px;
    animation-duration: 1s;
    animation-name: fade;
    font-family: Montserrat, arial;}

body {text-align: center;
    color: black;
    font-size: 20px;
    animation-duration: 1s;
    animation-name: fade;
    font-family: Open Sans, arial;}

img {vertical-align: central; 
    max-width: 100%;
    height: auto;
    animation-duration: 1s;
    animation-name: fade;}

a {color: black;
text-decoration: none;}

ol {list-style-position: inside;
    animation-duration: 1s;
    animation-name: fade;}

@keyframes fade 
    {from {opacity: 0;}
    to {opacity: 1;}}