#scene {
    position: absolute;
    z-index: 0;
    justify-content: center;
    width: 100%;
  	min-width: 2200px;
  	left: calc(50% - 1100px);
  	display: flex;
  	align-items: flex-end;
  	top: -100px;
}

#scene:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(16,32,49,0) 0%, rgb(0, 25, 71) 100%);
  z-index: 10;
}

.scene {
  	width: auto;
}

.scene-2, .scene-3 {
  	z-index: -100;
  	position: absolute;
  	top: 0;
}

.scene-3 {
    z-index: -10;
}

@media screen and (min-width: 2000px) {
    #scene {
        min-width: 106%;
      	left: -3%
    }
  
  	.scene {
     	min-width: 100%; 
  	}
}

@media screen and (max-width: 600px) {
  	#scene {
      /* max-height: 100vh; */
  	}
  	#scene:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(16,32,49,0) 0%, rgb(0, 25, 71) 100%);
      z-index: 1000;
  	}
}