/*
 Theme Name:   2025
 Description:  twentytwentyfive-child
 Author:       Me
 Author URI:   https://iwshr.com
 Template:     twentytwentyfive
 Version:      1.0
 Text Domain:  2025
*/
.rot {
	font-size: 1em;
	font-weight: bold;
	color: red;
}

.gruen {
	font-size: 1em;
	font-weight: bold;
	color: green;
}

.blink {
	font-size: 1em;
	font-weight: bold;
    animation-name: animation_blink;
    animation-timing-function: ease-in;
    animation-duration: 2s; 
    animation-iteration-count: infinite;            
}

@keyframes animation_blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }    
}