body {
    font-family: 'Mandali', sans-serif;
    background-color:#404040;
}
.word {
    position: absolute;
    opacity: 0;
    width: 500px;
    margin: 0;
    line-height: 1;
}

@keyframes fade {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    2.4% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    92% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    100% {
        opacity: 0;
        animation-timing-function: ease-out;
    }
}