/*
 Theme Name:    story.zvw.de
 Description:   Childtheme um Änderungen in Blocksy Updatesicher zu machen
 Template:      blocksy
 Version:       1.0.0
 License:       GNU General Public License v2 or later
 License URI:   http://www.gnu.org/licenses/gpl-2.0.html
*/

/*Dreh Animation*/
@keyframes rotating {
	0% {	rotate: 0; 	}
	100% {	rotate: 1turn; 	}
}
.rotieren {
	animation: rotating 9s linear infinite;
}

/*Hintergrund Blur*/
.filter-blur { 
    backdrop-filter: blur(10px); /* Unschärfe */
}