@charset "UTF-8";
/* CSS Document */

body{
	background: #FFD000;
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logorapport-camo.png'); /* Add your background image URL */
    animation: slideBackground 30s linear infinite;
    background-repeat: repeat; /* or repeat-x */
   /* background-size: contain; */
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -459px 459px; /* ganze bildbreite und ca 100px pro 10s sieht gut flüssig aus*/
    }
}