.parallax-container {
        overflow: hidden;
    }

    .layer {
        position:  fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: repeat-x;
        background-size: auto 100%; /* Or specific dimensions */
    }

    .background {
    	z-index:-3;
        background-image: url('https://hydras-bloom.neocities.org/ovenbreak0006_tm003_bg-ezgif.com-crop%20(3).png') ;
		background-repeat: repeat-x;
        animation: scrollBackground 180s linear infinite; /* Slower speed */
    }
	
	@keyframes scrollBackground {
         100% {
    background-position: -6300px -0px;} 
    }
    
    .container {
    
    border: 2px solid, black;
    border-radius: 0px;
    width: 1000px;
    height: 1130px;
    background-color: white;
    margin: auto;
    padding: 0px;
}