#hello {
    color: #c29151;
    font-family: "Brush Script MT", cursive;
    font-weight: bold;
    font-size: 2.2rem;
    -webkit-text-stroke: 2px #5d4629;
    -webkit-text-fill-color: #c29151;
    animation: fadeOutHello 10s ease-in;
}

#hello.hidden {
    opacity: 0;
}

@keyframes fadeOutHello {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    60% {
        -webkit-text-stroke: 2px #c29151;
    }

    100% {
        opacity: 0;
    }
}
