body{
    font-family: 'Martian Mono', monospace;
    color:#534340;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}

a{
    text-decoration: none;
    font-size: 24px; 
    font-weight: bold;
    animation: colorChange 3s infinite;
}

@keyframes colorChange {
    0% { color: yellowgreen; }
    25% { color: #799622; }
    50% { color: green; }
    75% { color: yellow }
    100% { color:yellow;}
}
