html {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #EEE;
    opacity: 0;
    animation: anim 0.5s linear forwards 0.5s;
    -webkit-animation: anim 0.5s linear forwards 0.5s;
    -moz-animation: anim 0.5s linear forwards 0.5s;
    -o-animation: anim 0.5s linear forwards 0.5s;
}

@keyframes anim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes anim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: #111;
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
}

p {
    font-size: 12px;
    padding: 5px 30% 5px 30%;
    width: 40%;
    display: inline-block;
    color: #AAA;
    text-align: justify;
}

footer p {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 100px;
    margin-bottom: 20px;
    color: #555;
    font-size: 10px;
    text-align: center;
}