body {
    background: #111;
    color: #eee;
    font-family: "Times New Roman", serif;
    text-align: center;
    padding-top: 50px;
}

p {
    opacity: 0;
    animation: fade 30s infinite;
}

p:nth-child(1) {
    animation-delay: 1s;
}

p:nth-child(2) {
    animation-delay: 3s;
}

p:nth-child(3) {
    animation-delay: 5s;
}

p:nth-child(4) {
    animation-delay: 7s;
}

p:nth-child(5) {
    animation-delay: 9s;
}

p:nth-child(6) {
    animation-delay: 11s;
}

p:nth-child(7) {
    animation-delay: 13s;
}

p:nth-child(8) {
    animation-delay: 15s;
}

p:nth-child(9) {
    animation-delay: 17s;
}

p:nth-child(10) {
    animation-delay: 19s;
}

p:nth-child(11) {
    animation-delay: 21s;
}

p:nth-child(12) {
    animation-delay: 23s;
}

p:nth-child(13) {
    animation-delay: 25s;
}

p:nth-child(14) {
    animation-delay: 27s;
}

@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }
}