body {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
}

#header {
    top: 0;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    height: fit-content;
}

#content {
    flex: 1;
}

#footer {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    bottom: 0;
    height: fit-content;
}

#copyright {
    font-size: 0.5vw;
    color: ghostwhite;
    text-align: center;
    font-style:italic;
    width: 100%;
    height:1em;
    bottom: -1em;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    flex-shrink: 0;
}

@media only screen and (max-width: 600px) {
    #copyright {
        font-size: 1.5vw;
    } 
}

.home-navigation {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 0 0 0;
}

.home-navigation > p {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 0 0 0;
}

.home-link {
    text-decoration: none;
    font-family: 'Copperplate', fantasy, sans-serif;
    text-shadow: 
        -0.05em -0.05em 0.1em black,
        -0.05em  0.05em 0.1em black,
         0.05em -0.05em 0.1em black,
         0.05em  0.05em 0.1em black;
}

#copyright > * > a {
    color: inherit;
    text-decoration: none;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Pushes it behind your content */
    display: block;
}

a {
    animation: linkColorFlow 6s infinite;
    text-decoration-color: inherit;
}

a:hover {
    animation: linkColorFlow 1s infinite;
}

@keyframes linkColorFlow {
    0% { color: hsl(0, 75%, 85%) }
    20% { color: hsl(72, 75%, 85%) }
    40% { color: hsl(144, 75%, 85%) }
    60% { color: hsl(216, 75%, 85%) }
    80% { color: hsl(288, 75%, 85%) }
    100% { color: hsl(360, 75%, 85%) }
}