@keyframes titlePulse {
    0% {text-shadow: #B17300 3px 3px 7px;}
    75% {text-shadow: #B17300 3px 3px 7px;}
    80% {text-shadow: lightsteelblue 3px 3px 7px;}
    90% {text-shadow: steelblue 3px 3px 7px;}
    100% {text-shadow: #B17300 3px 3px 7px;}
}

.titlePulse {
    animation-name: titlePulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes wobble {
    0% {rotate: 0deg;}
    33% {rotate: 15deg;}
    66% {rotate: -15deg;}
    100% {rotate: 0deg;}
}

.wobble {
    animation-name: wobble;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}