
.home #landing-page-welcome #image-container {
    animation: slideIn 0.5s ease forwards;
}



@media (prefers-reduced-motion: reduce) {
    .home #landing-page-welcome #image-container { animation: none; left: 0; }
}

@keyframes slideIn {
    from { top: -35%; }
    to   { top: 0; }
}

@media only screen and (min-width: 800px) {

    @keyframes slideIn {
        from { left: -35%; }
        to   { left: 0; }
    }

}