    @import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
    :root {
        --bg-color: #000;
        --text-color: #a2b3a1;
        --img-width: 100%;
    }

    body {
        text-transform: uppercase;
        background-color: var(--bg-color);
        font-family: 'Pangolin', sans-serif;
        font-weight: bold;
        margin: 0;
        padding: 0;
        font-size: 18px;
        color: var(--text-color);
    }

    #bg {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        align-items: center;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    #bg img {
        width: var(--img-width);
        height: var(--img-width);
        animation-name: rotate;
        animation-duration: 60s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    @keyframes rotate {
        from {
            transform: rotate(360deg);
        }
        to {
            transform: rotate(-360deg);
        }
    }

    #container {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        z-index: 10;
    }

    #content {
        width: 100%;
        padding: 2em 1.2em;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    @media only screen and (min-width: 1200px) {
        #content {
            width: 80%;
        }
    }

    @media only screen and (min-width: 1600px) {
        #content {
            width: 70%;
        }
    }

    a {
        color: var(--text-color);
    }

    a:hover {
        color: var(--text-color);
        filter: brightness(55%);
        text-decoration: none;
    }

    a.mailto:after {
        content: attr(data-a) "@" attr(data-b) ".net";
    }

    #logo img {
        display: inline-block;
        width: 100%;
        max-width: 507px;
        max-height: 130px;
        margin: 1em 0 2em;
    }

    #links {
        margin: .3rem 0 1rem 0;
        font-size: 2rem;
    }

    #links a {
        padding: 0rem .5rem;
    }

    #shows {
        text-align: left;
        white-space: nowrap;
        /*overflow-x: scroll; do not use, shows disable scroll bar in Chrome */
        overflow-x: auto;
    }