/**
 * This file was created by Mathieu Stenzel (student number: 4367489)
 */

.guessing-date-animation {
    animation-name: fly;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes fly {
    50%{
        color: crimson;
        text-decoration: underline;
    }
}