* {

  box-sizing: border-box;

}
body {

  font-family: '?', sans-serif;

}
.scene {
weight: 100%;
height: 100%;
min-height: 450px;
position: relative;
top: 0;
left: 0;
background-color: blue;
transform: translate3d(0, 0, 0);
}
.level-1 {
	animation: animation_fg linear 30s infinite both;
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/layer-1.png') 0 100% repeat-x;
	z-index: 1;

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 100%;

background-size: auto 145px;
}
.level-2 {
animation: animation_fg linear 75s infinite both;
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/layer-2.png') 0 100% repeat-x;
	z-index: 1;

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 100%;

background-size: auto 158px;
}
.level-3 {
animation: animation_fg linear 30s infinite both;
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/layer-3.png') 0 100% repeat-x;
	z-index: 1;

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 100%;

background-size: auto 468px;
}
.level-4 {
	animation: animation_fg linear 120s infinite both;
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/layer-4.png') 0 100% repeat-x;
	z-index: 1;

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 100%;

background-size: auto 311px;
}
.level-5 {
	animation: animation_fg linear 55s infinite both;
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/layer-5.png') 0 100% repeat-x;
	z-index: 1;

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 100%;

background-size: auto 222px;
}
.object-1 {
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/object-1.png') 0 100% no-repeat;

z-index: 1;

position: absolute;

bottom: 100px;

left: 0;

width: 100%;

height: 100%;

background-size: auto 75px;

animation: animation_object-1 linear 10s infinite both;
}
.object-2 {
	background: url('https://raw.githubusercontent.com/kittycat266/flower/refs/heads/main/object-2.png') 0 100% no-repeat;

z-index: 1;

position: absolute;

bottom: 100px;

left: 0;

width: 100%;

height: 100%;

background-size: auto 75px;

animation: animation_object-2 linear 15s infinite both;
}
@keyframes animation_fg {
  0% {
    background-position: 2765px 100%;
  }
  100% {
    background-position: 550px 100%;
  }
}

@keyframes animation_object-1 {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}

@keyframes animation_object-2 {
  0% {
    background-position: -300px 100%;
  }
  100% {
    background-position: 2000px 100%;
  }
}
