@keyframes example {
    0% {
        color: black;
        font-size: 32px;
    }
    50% {
        color: red;
        font-size: 38px;
    }
    100% {
        color: black;
        font-size: 32px;
    }
}

/* DIV TIL h1.farve så animationen ikke flytter hele dokumentet */
div.farve {
    height: 42px;
    margin-top:30px;
}

h1.farve {
    display: flex;
    justify-content: center;
    
    font-size: 32px;
    color: black;
    margin: 0px;


    /* ANIMATION */
    animation-name: example;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

h2 {
    text-shadow: 2px 2px 5px black;
    margin-top: 50px;
}

body {
    background-image: url("/billeder/test.jpg");
    background-repeat:repeat;
}

ol {
    list-style: upper-roman;
}

button {
    cursor: pointer;
}

#pandekager { 
    display: none;
    margin-left: 10px;
}
#credit {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    size: 10px;
}