h3 {
text-align: center;
-webkit-animation: textwelle 3s;
animation: textwelle 3s;
font-size: 200%;
}
@keyframes textwelle {
0% {
font-size: 0%;
opacity: 0;
}
90% {
font-size: 220%;
opacity: 1;
}
100% {
font-size: 200%;
opacity: 1;
}
}
@-webkit-keyframes textwelle {
0% {
font-size: 0%;
opacity: 0;
}
90% {
font-size: 120%;
opacity: 1;
}
100% {
font-size: 100%;
}
}
