* {
    box-sizing: border-box;
}
body {
       font-family: 'Arial', sans-serif;
}
.scene {
     width: 100%;
     height: 100%;
	 min-height: 500px;
	 position: relative;
	 top: 0px;
	 left: 0px;
	 background-color: #FFF0F5;
	 transform: translate3d(0, 0, 0);
}
.layer-4 {
     animation: animation_fg linear 120s infinite both; 
	 background: url(https://raw.githubusercontent.com/Edsel11Eleven/webdesign/main/CSS%20Animation/nebo.png) 0 100% repeat-x;
	 z-index: 1;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: auto 500px;
}
.layer-3 {
     animation: animation_fg linear 95s infinite both; 
	 background: url(https://raw.githubusercontent.com/Edsel11Eleven/webdesign/main/CSS%20Animation/holm3.png) 0 100% repeat-x;
	 z-index: 1;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: auto 236px;
}

.layer-2 {
     animation: animation_fg linear 70s infinite both; 
	 background: url(https://raw.githubusercontent.com/Edsel11Eleven/webdesign/main/CSS%20Animation/holm2.png) 0 100% repeat-x;
	 z-index: 1;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: auto 123px;
}

.layer-1 {
     animation: animation_fg linear 22s infinite both; 
	 background:  url(https://raw.githubusercontent.com/Edsel11Eleven/webdesign/main/CSS%20Animation/holm1.png) 0 100% repeat-x;
	 z-index: 1;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: auto 131px;
}
.object-1 {
     background: url(https://raw.githubusercontent.com/Edsel11Eleven/webdesign/main/CSS%20Animation/cow.png) 0 100% no-repeat;
	 z-index: 1;
	 position: absolute;
	 bottom: 0px;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: auto 185px;
	 animation: animation_object linear 200s infinite both;
}

@keyframes animation_fg {
 0% {
background-position: 2765px 100%;
}
100% {
    background-position: 550px 100%;
  }
}
@keyframes animation_object {
0% {
background-position: -300px 100%;
}
  100% {
background-position: 2000px 100%;
}
}
