body {
    margin: 0;
    padding: 0;
    font-family:
        Futura,
        Trebuchet MS,
        Arial,
        sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    overflow-y: scroll;
    background-color: #001;
    background-image: url(img/kindOfBlue.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a:visited {
    color: inherit;
}

:root {
    --lightBg: #dddddd;
    --linkColor: #000099;
}

/*nav a span {
    background-color: #ffffff;
    color: red;
}*/

.content {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 2em;
}
.content > h1 {
    font-size: 56px;
    line-height: 60px;
    margin: 0;
    color: #fff;
    opacity: 0;
    animation-name: fadeIn7;
    animation-duration: 0.125s;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.content > .imgHolder {
    position: relative;
    height: 70vh;
    margin: 3px 0;
    max-height: 450px;
}

.content > .imgHolder > a {
    height: 165px;
    position: absolute;
    opacity: 0;
    color: #fff;
    animation-name: fadeInFull;
    animation-duration: 0.125s;
    animation-iteration-count: 1;
    animation-delay: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    border: 3px solid transparent;
    border-radius: 6px;
}

.content > .imgHolder > a > span {
    display: block;
    opacity: 0;
    width: 63%;
    padding: 5px;
    position: relative;
    z-index: -1;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: #fff;
    border-radius: 0 6px;
    animation-name: navRight;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-delay: 4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.content > .imgHolder > a:hover {
    border-color: #fff;
    background-color: var(--lightBg);
}

.content > .imgHolder > a:hover > span {
    color: var(--linkColor);
    background-color: #fff;
}

.content > .imgHolder > a:nth-of-type(1) {
    top: 0;
    left: 5%;
    animation-delay: 0.25s;
    animation-play-state: running;
}
.content > .imgHolder > a:nth-of-type(1) > span {
    left: 0%;
    top: -75%;
    padding-left: 30px;
    text-align: right;
    animation-play-state: running;
}

.content > .imgHolder > a:nth-of-type(2) {
    height: 165px;
    top: max(18%, 120px);
    left: 32%;
    animation-delay: 0.5s;
    animation-play-state: running;
}

.content > .imgHolder > a:nth-of-type(2) > span {
    left: 0%;
    top: -50%;
    border-width: 3px 0 0 3px;
    border-radius: 6px 0 0 0;
    animation-name: navLeft;
    animation-play-state: running;
}

.content > .imgHolder > a:nth-of-type(3) {
    top: max(23%, 275px);
    left: 10%;
    animation-delay: 0.75s;
    animation-play-state: running;
}
.content > .imgHolder > a:nth-of-type(3) > span {
    left: 0%;
    top: -45%;
    padding-left: 0;
    text-align: right;
    animation-play-state: running;
}

.content > .imgHolder > a > img {
    object-fit: cover;
    max-height: 165px;
}

.content > h2 {
    color: #fff;
    text-align: right;
    opacity: 0;
    animation-name: fadeIn7;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-delay: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    border-radius: 25px;
}
.content > article {
    margin: 0 auto;
    padding: 1em;
    margin-top: -10000px;
    margin-bottom: 2em;
    background-color: #fff;
    opacity: 0;
    animation-name: fadeIn7;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-delay: 4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    border-radius: 25px;
}

.content > article > h2,
.content > article > h3,
.content > article > hr {
    column-span: all;
}
.content > article.col2 {
    columns: 250px 2;
}
.content > article.col3 {
    columns: 250px 3;
}

.content > article.col3 img {
    width: 100%;
    shape-outside: inherit;
    margin: 0;
}

.content > article.col3.musicLinks a,
.content > article.col2.videoLinks a {
    display: block;
    margin: 0 auto;
    text-align: center;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
.content > article.col3.musicLinks a img,
.content > article.col2.videoLinks a img {
    width: 64px;
    display: block;
    margin: 0 auto;
}
.content > article > iframe {
    display: block;
    width: 100%;
    margin: 0.5em auto;
    height: auto;
    column-span: all;
    border: none;
}
.content > article.musicLinks > iframe {
    height: 42px;
    min-width: auto;
    max-width: 700px;
    margin: 0 auto;
}
.content > article.videoLinks > iframe {
    aspect-ratio: 16 / 9;
}
/*animations*/

@keyframes fadeIn7 {
    from {
        opacity: 0;
        margin-top: auto;
    }
    to {
        opacity: 0.7;
        margin-top: auto;
    }
}
@keyframes fadeInFull {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes navRight {
    from {
        opacity: 0;
        left: 0%;
    }
    to {
        opacity: 1;
        left: 100%;
    }
}

@keyframes navLeft {
    from {
        opacity: 0;
        left: 0%;
        padding-right: 0;
    }
    to {
        opacity: 1;
        left: -112%;
        padding-right: 73px;
    }
}
