:root {
    --primary: #39328f;
    --primary-content: #d3d1ef;
    --primary-dark: #2a2569;
    --primary-light: #483fb5;

    --secondary: #8f3259;
    --secondary-content: #efd1de;
    --secondary-dark: #692541;
    --secondary-light: #b53f71;

    --background: #18181b;
    --foreground: #242329;
    --border: #3c3b45;

    --copy: #fbfbfb;
    --copy-light: #d6d6dc;
    --copy-lighter: #a09fac;

    --success: #328f32;
    --warning: #8f8f32;
    --error: #8f3232;
    --success-content: #d1efd1;
    --warning-content: #000000;
    --error-content: #efd1d1;
}

body {
    font-family: "Poppins", sans-serif;

    background-color: var(--background);
    color: var(--copy);

    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6,p {
    margin-top: 0;
    margin-bottom: 0;
}

.page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container {
    width: 100%;

    display: flex;
    justify-content: center;

    .inner {
        max-width: 1440px;
        flex-grow: 1;
    }
}

.header {
    position: relative;
    width: 100%;

    .banner {
        width: 100%;
    }

    .container {
        position: absolute;
        top: 0;
        height: 305px;

        .inner {
            display: flex;
            align-items: center;

            &.centered {
                justify-content: center;
            }

            a {
                display: flex;
            }

            .info {
                text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
            }

            img {
                border-radius: 50%;

                margin-right: 20px;

                @media only screen and (max-width: 1500px) {
                    height: 75px;
                }
            }
        }

        @media only screen and (max-width: 1500px) {
            height: unset;
            padding-top: 20px;
            padding-left: 20px;
        }
    }
}

.videos {
    display: grid;
    gap: 20px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

    margin-top: 40px;
    margin-bottom: 40px;

    .video {

        text-decoration: none;
        color: var(--copy);

        border: solid 2px var(--border);

        border-radius: 4px;
        cursor: pointer;

        transition: 100ms;
        &:hover {
            transition: 100ms;
            border-color: var(--primary);
        }

        .info {
            margin-bottom: 5px;
            margin-left: 10px;
        }

        img {
            width: 100%;
            border-top-right-radius: 4px;
            border-top-left-radius: 4px;
        }
    }

    @media only screen and (max-width: 1470px) {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.player {
    margin-top: 40px;
    margin-bottom: 40px;
}

.cast-button {

    svg {
        height: 24px;
        width: 24px;
    }
}