html {
    background-color: #2f1554;
    font-family: 'Courier New', Courier, monospace;
    /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    animation: colorchange 1.5s;
    /* Chrome and Safari */
    -webkit-animation: colorchange 1.5s;
}

body, .title, h1, h2, h3, h4, h5, h6, p, a {
    color: white;
}

body {
    margin: 0px;
}

/* animate background color changes */

@keyframes colorchange {
    0% {
        background-color: #150827;
    }
    66% {
        background-color: #442372;
    }
    100% {
        background-color: #2f1554;
    }
}

/* Safari and Chrome - necessary duplicate */

@-webkit-keyframes colorchange {
    0% {
        background-color: #150827;
    }
    66% {
        background-color: #442372;
    }
    100% {
        background-color: #2f1554;
    }
}

svg {
    max-width: 400px;
    height: 100%;
    display: block;
    font-size: 16em;
    margin: 0 auto
}

.text-copy {
    font-family: sans-serif !important;
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear
}

.text-copy:nth-child(1) {
    /*stroke:#DCDFFF;*/
    animation-delay: -1s;
}

.text-copy:nth-child(2) {
    stroke: #ABE2FE;
    animation-delay: -2s
}

.text-copy:nth-child(3) {
    stroke: #59B2EC;
    animation-delay: -3s
}

.text-copy:nth-child(4) {
    stroke: #5568ce;
    animation-delay: -4s
}

.text-copy:nth-child(5) {
    stroke: #E092DA;
    animation-delay: -5s
}

@keyframes stroke-offset {
    100% {
        stroke-dashoffset: -35%
    }
}

#year {
    text-align: center;
}

#small-container {
    max-width: 410px;
    margin: 0 auto;
    padding-bottom: 1em;
}

#medium-container {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 1em;
}

#big-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 1.5em;
    padding-top: 0px;
}

#back {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}

h3 {
    text-align: center;
    text-decoration: underline;
    font-style: italic;
    margin-bottom: 0.75em;
    margin-top: 0px;
    padding: 0 15px;
    padding-top: 2em;
}

ul {
    list-style: none;
    padding-left: 30px;
    margin: 0 auto;
}

a {
    font-style: italic;
    text-decoration: underline;
    text-align: center;
    display: block;
}

.menu {
    padding: 1em;
    margin-bottom: 1em;
}

.names-grid-container {
    margin-top: 0.75em;
}

@media all and (min-width:530px) {
    .names-grid-container {
        display: grid;
        grid-template-columns: 50% auto;
        margin: 0;
        grid-column-gap: 0.5em;
        margin-top: 0.75em;
    }
    .grid-item1 {
        grid-column: 1;
    }
    .grid-item2 {
        grid-column: 2;
    }
    ul {
        padding: 0;
    }
}