html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}

body {
    background: linear-gradient(135deg, #ffadad, #ffd6a5, #fdffb6, #caffbf, #9bf6ff, #ffc6ff);
    background-size: 1200% 1200%;

    -webkit-animation: AnimationName 14s ease infinite;
    -moz-animation: AnimationName 14s ease infinite;
    -o-animation: AnimationName 14s ease infinite;
    animation: AnimationName 14s ease infinite;

    display: flex;
    flex-direction: column;
}

#moving-text {
    height: 3.5em;
    margin: 0;
    background-color: #ffffff;

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 4%}
	50%{background-position:100% 97%}
	100%{background-position:0% 4%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 4%}
	50%{background-position:100% 97%}
	100%{background-position:0% 4%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 4%}
	50%{background-position:100% 97%}
	100%{background-position:0% 4%}
}
@keyframes AnimationName {
    0%{background-position:0% 4%}
	50%{background-position:100% 97%}
	100%{background-position:0% 4%}
}

marquee {
    width: 100%;
    height: calc(100% - 4rem);
}

#footer {
    width: calc(100% - 0.2em);
    background-color: black;
    margin: 0;
    color: white;
    display: flex;

    justify-content: end;
    align-content: end;
    flex-direction: column;

    text-align: center;
    font-size: 3em;

    padding-bottom: 2px;
    padding-top: 0.1em;
    padding-right: 0.1em;
    padding-left: 0.1em;
}

a {
    color: inherit;
}

#topmarquee {
    flex-grow: 1;
}