body {
    background-image: url('images/backgroundslommy.png');
    animation: scrollingBg 180s infinite linear; /* This controls the scrolling speed!*/
    overflow: hidden;
    font-family: nindot, helvetica;

    position: relative;
    margin: 0;
    min-height: 100vh;
}

@keyframes scrollingBg {
    from { background-position: 0 0; }
    to { background-position: 0 1080px; }
}