/* CSS Code hier einfügen.

Zum Beispiel:
.example {
    color: red;
}

Um dein CSS-Wissen zu prüfen, teste es hier http://www.w3schools.com/css/css_syntax.asp

Kommentarende*/ 

.technik-video-anim {
	
	animation: technikVideoAnimation linear both;
	animation-timeline: view();
}

@keyframes technikVideoAnimation{
	
	0%{
		/*background-color: #492685FF;*/
		background-color: #000000FF;
		/*filter: blur(10px);*/
	}
	30%,70%{
		background-color: revert;
		filter: blur(0px);
	}
	100%{
		/*background-color: #492685FF;*/
		background-color: #000000FF;
		/*filter: blur(10px);*/
	}
}
