@keyframes tatutata {
	0%{
		transform: translateX(0vw) rotate(-170deg);
		background-color: red;
	}
	
	50%{
		transform: translateX(100vw) rotate(-720deg);
		background-color: yellow;
	}
	
	100%{
		transform: translateX(0vw) rotate(-1750deg);
		background-color: blue;
	}
}

@keyframes lsd {
	0%{
		background-position: 0 0;
	}
	
	50%{
		background-position: 0 30%;
	}
	
	100%{
		background-position: 0 0;
	}
}

.animationambulance{
	animation-name: tatutata;
	animation-duration: 4s;
	background-color: blue;
	transform: rotate(-1750deg);
}


.bodieshitthefloor{
	/*background: 
		linear-gradient(to bottom, 
			orange  0%, 
			red     10%, 
			purple  20%, 
			green   30%, 
			pink    60%,
			blue    80%, 
			yellow  90%,
			orange  100%); */
	background-image: url('background.PNG');
	animation-name: lsd;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

.htmlbuttons {
  background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  font-family: arial, sans-serif;
  /*input has OS specific font-family*/
  color: #069;
  text-decoration: underline;
  cursor: pointer;
}