body {
    background-color: aquamarine;
    animation: bg-fade 5s linear infinite alternate;
    display: flex;
    flex-wrap: nowrap; 
    overflow: scroll;
}

@keyframes bg-fade {
    from{background-color: lightgray;}
    to{background-color: black;}
}

.nav {
    position: fixed;
    margin: 2vmin;
    font-size: 600%;
    color: white;
/*    z-index: 2;*/
}

a {
    text-decoration: none;
    color: white;
    animation: nav-fade 2s linear infinite alternate;
}

a:hover {
    color: aquamarine;
    animation: none;
}

@keyframes nav-fade {
    from{color: gray;}
    to{color: black;}
}

p {
    margin: 2vmin;
    margin-top: 50vh;
    transform: translate(0, -40%);
    font-style: italic;
    color: white;
}

.flyer {
    margin: 5vh;
    max-height: 85vh;
}