.html-splash {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.html-splash img {
    animation: 0s linear 0.2s forwards delayedShow;
    visibility: hidden;
    width: 200px;
}

@keyframes delayedShow {
    to {
        visibility: visible;
    }
}