:root {
    --bgCol: #1c110d;
    --highCol: #fcc760;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    color: white;

    background-color: var(--bgCol);
}

#pageHead {
    text-align: center;
}

#title {
    margin-bottom: 2em;

}

#title h1 {
    font-size: 10em;
    margin-bottom: 0.1em;
    color: var(--highCol);
}

#socialLinks {
    font-size: xx-large;
}

#linksList {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 0.5em;
    flex-wrap: wrap;
}

#linksList a {
    text-decoration: none;
    font-size: 50px;
    display: block;
    color: var(--highCol);
    transition: scale 0.1s;
}

#linksList img {
    width: 50px;
}

#linksList a:hover {
    scale: 1.1;
}

.svg {
    filter: invert(97%) sepia(43%) saturate(5945%) hue-rotate(312deg) brightness(103%) contrast(98%);
}

/* CONTENT */

#content {
    background-image: linear-gradient(#1c110d33, #1c110dbb), url("./assets/youtube_banner_v4.5.png");
    background-size: cover;
    background-position: top;
    min-height: 100vh;
    color: black;
    padding: 1em;
    padding-top: 0;
}

.fade {
    background-image: linear-gradient( var(--bgCol) 5%, transparent);
    height: 2em;
    margin: 0 -1em;
}

.cols {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cols > div {
    width: 40%;
}

.pin {
    animation: rotate 2s linear infinite paused;
    transition: transform 1s ease-out;
    width: 7.5rem;
}
.pin:hover {
    animation-play-state: running;
    transform: rotate(-.2turn);
}
@keyframes rotate {
    to {rotate: 1turn}
}

#patreon a, #discord a {
    display: flex;
    font-size: 1.5em;
    margin: 1em 0;
    font-style: italic;
}

#patreon img, #discord img {
    z-index: 10;
}

#patreon div, #discord div {
    margin: 1em 0 1em -2.5em ;
    padding-left: 3em;
    flex-grow: 1;

    background-color: var(--highCol);
    border: solid var(--bgCol) 0.25em;
    border-radius: 5em;

    display: flex;
    align-items: center;
}

#mainChannel {
    text-align: center;
}

#mainChannel iframe {
    width: 90%;
    aspect-ratio: 16 / 9;
    border: solid var(--highCol) 0.25em;
    border-radius: 2.5em;
}

#fanfiction h1 {
    text-align: center;
    color: var(--highCol);
    font-size: 4em;
    text-decoration: underline;
    text-shadow: 0 0 10px 10px var(--bgCol);
}

.fic {
    background-color: var(--highCol);
    padding: 0.75em 1.25em 1em;
    margin: 2.5em 0 1em;
    border: solid var(--bgCol) 0.25em;
    border-radius: 2.5em;
    line-height: 1.15;
}

.fic h2 {
    margin-top: 0;
}

.fic p:last-child {
    margin-bottom: 0;
}

.fic .pin {
    float: right;
    margin-top: -2.5rem;
    margin-right: -2.5rem;
}

a {
    color: inherit;
}

#pumpkinTrack .pin {
    border-radius: 50%;
}

#footer {
    color: var(--highCol);
    text-align: center;
    margin-top: 1em;
    text-shadow: 0 0 10px black;
    margin-top: -2em;
    z-index: 10;
}


@media (max-width: 1000px)  { 

    #title h1 {
        font-size: 3.5em;
        margin-top: 20vh
    }

    #linksList {
        gap: 1em;
    }

    #linksList a {
        font-size: 1em;
    }

    #linksList img {
        width: 1em;
    }
    
    .cols {
        display: block;
        margin-bottom: 4em;
    }
    
    .cols > div {
        width: 100%;
        margin: auto;
    }

}