* {
    font-family: "Lato", sans-serif;
    font-size: 12pt;
    font-weight: 400;
    font-optical-sizing: auto;
}
html, body {
    height: 100%;
    min-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
}
h1 {
    font-size: 190%;
}
h2 {
    font-size: 170%;
}
h3 {
    font-size: 150%;
}
h4 {
    font-size: 130%;
}
h5 {
    font-size: 120%;
}
h6 {
    font-size: 110%;
}

a, a:visited {
    color: #ffffff;
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

table {
    margin: 1rem 0;
    border-spacing: 0;
    /* box-shadow: #00000060 0.2rem 0.2rem 1rem; */
    th, td {
        margin: 0;
        padding: 0.2rem;
        text-align: left;
    }

    tr td, tr th {
        border-top-width: 0;
        border-right-width: 0.1rem;
        border-bottom-width: 0.1rem;
        border-left-width: 0;
        border-style: solid;
        border-color: #ffffff;
    }
    tr:last-child td, tr:last-child th {
        border-bottom-width: 0;
    }
    tr th:last-child, tr td:last-child {
        border-right-width: 0;
    }

    & > thead {
        tr {
            th {
                background-color: var(--dark-red);
                font-weight: 700;
                a {
                    font-weight: inherit;
                }
            }
            td {
                background-color: var(--dark-red);
                font-weight: 700;
            }
        }
    }
    & > tbody {
        tr {
            th {
                background-color: var(--red);
            }
            td {
                background-color: var(--red);
            }
        }
    }

    img {
        height: 2rem;
    }
}

p {
}

.left-align {
    text-align: left;
}
.center-align {
    text-align: center;
}
.right-align {
    text-align: right;
}

.large {
    font-size: 150%;
}
.xlarge {
    font-size: 180%;
}

.button, .button:visited {
    display: inline-block;
    margin: 0;
    padding: 0.3rem 0.8rem;
    background-color: var(--darker-red);
    color: #ffffff;
    border: none;
    text-align: center;
    text-decoration: none;
    img {
        position: relative;
        display: inline-block;
        height: 1rem;
        top: -0.1rem;
        vertical-align: middle;
    }
}
.button:hover, .button:focus {
    background-color: var(--dark-red);
    outline: 3px solid #ffffff;
}

.schedule {
    display: inline;
    padding: 0;
    li {
        display: inline;
        list-style-type: none;
    }
    li::after {
        content: " | ";
    }
    li:last-of-type::after {
        content: "";
    }
}

.card-container {
    gap: 0.5rem;
    .card {
        margin: 0;
        padding: 0;
    }
}
.card-follow {
    a, a:visited {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: calc((var(--width) - 2rem - (0.5rem * 2)) / 3);
        height: 7.6rem;
        background-color: var(--darker-red);
        overflow: hidden;
        div {
            position: absolute;
            margin: 0;
            padding: 0;
            height: 3.5rem;
            left: 1rem;
            top: 1rem;
            img {
                position: relative;
                display: inline-block;
                height: 3.5rem;
                vertical-align: bottom;
            }
            h2 {
                position: relative;
                display: inline-block;
                left: 0.3rem;
                top: 0.9rem;
                color: #ffffff;
                font-size: 24pt;
                font-weight: 700;
                span {
                    position: absolute;
                    display: inline-block;
                    bottom: 2.5rem;
                    left: 0;
                    font-size: 16pt;
                }
            }
        }
        h3 {
            position: absolute;
            margin: 0;
            padding: 0 0.5rem;
            left: 0;
            top: 5.6rem;
            width: 100%;
            height: 2rem;
            background: var(--darker-red);
            background: linear-gradient(90deg, rgba(150, 15, 51, 0) 0%, rgba(150, 15, 51, 1) 100%);
            color: #ffffff;
            font-size: 16pt;
            font-weight: 400;
            text-align: right;
        }
    }
    a:hover, a:focus {
        background-color: var(--dark-red);
        outline: 3px solid #ffffff;
    }
}
.card-support {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem 0;
    width: 100%;
    border-width: 0 0 3px 0;
    border-style: solid;
    border-color: #ffffff;

    & > div:nth-of-type(1) {
        display: inline-block;
        position: relative;
        flex-grow: 0;
        flex-shrink: 0;
        margin: 0 1rem 0 0;
        width: 6rem;
        min-width: 3rem;

        a, a:visited {
            img {
                position: absolute;
                width: 100%;
            }
        }
        a:hover, a:focus {
            img:nth-of-type(1) {
                top: 0.2rem;
                left: 0.2rem;
                filter: blur(10px) invert();
                opacity: 0.5;
            }
        }
    }
    & > div:nth-of-type(2) {
        display: inline-block;
        flex-grow: 0;
        flex-shrink: 1;

        h2 {
            a, a:visited {
                color: #ffffff;
                font-size: inherit;
                font-weight: 700;
                text-decoration: none;
            }
            a:hover, a:focus {
                text-decoration: underline;
            }
        }

        & a:hover img, a:focus img {
            outline: 3px solid #ffffff;
        }
    }
}
.card-support:last-of-type {
    margin: 0;
    padding: 0;
    border: none;
}

.photo-container {
    gap: 0.5rem;
    .card {
        margin: 0;
        padding: 0;
    }
}
.photo-square {
    width: 8rem;
    aspect-ratio: 1;
    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.text-photo-container {
    padding: 0;
    background-color: var(--red-50);
    div:nth-of-type(1) {
        width: calc((var(--width) - 0.5rem) / 2);
        margin: 0 0.5rem 0 0;
        padding: 0.5rem;
        p {
            margin: 1rem 0 0 0;
        }
    }
    div:nth-of-type(2) {
        width: calc((var(--width) - 0.5rem) / 2);
        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
}

iframe.twitch {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

iframe.twitch-chat {
    width: 100%;
    height: 30rem;
    border: none;
}
