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

body {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../bg_slide/logorapport-camo.png"); /* Add your background image URL */
    animation: slideBackground 30s linear infinite;
    background-repeat: repeat; /* or repeat-x */
   /* background-size: contain; */
}
.blur-effect {
  	backdrop-filter: blur(3px);
  	background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
}

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