.rotatingText {
    font-style: italic;
    text-align: left;
    display: inline-block;
    position: relative;
    height: 18pt;
    width: 250pt;
}

.rotatingText-adjective {
    position: absolute;
    opacity: 0;
}

@keyframes rotate {
    0% {
        opacity: 0;
    }

    20%, 80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes rotate-last {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.rotatingText-adjective:nth-of-type(1) {
    animation-name: rotate;
    animation-duration: 1.5s;
    animation-delay: 0s;
}

.rotatingText-adjective:nth-of-type(2) {
    animation-name: rotate;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.rotatingText-adjective:nth-of-type(3) {
    animation-name: rotate;
    animation-duration: 1.5s;
    animation-delay: 3s;
}

.rotatingText-adjective:nth-of-type(4) {
    animation-name: rotate-last;
    animation-duration: 1.5s;
    animation-delay: 4.5s;
    animation-fill-mode: forwards;
}