html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, img, small, strong, ol, ul, li, table, caption, tbody, tfoot, thead, tr, th, rd {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

html > body {font-size: 12px;}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: white;
    background: #2b2b2b;
    a {
        text-decoration: none;
    }
}

body.center {text-align: center;}

body.center .container {
    margin: 0 auto;
    text-align: left;
}

body .fixed-lg {width: 920px;}

.relative {position: relative;}

ul.nv {
    display: flex;
    align-items: center;
    list-style-type: none;
    li {
        padding-right: 2em;
        font-size: 18px;
        img {
            filter:drop-shadow(0 2px 10px black);
        }
        }
    li.first {
        display: flex;
        align-items: center;
        background: none;
        width: 120px;
    }
}

div.bar {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(105, 105, 105, 1) 100%);
    ul {
        display: flex;
        align-content: center;
    }
    li {
        list-style-type: none;
        a {
            display: block;
            color: white;
            font-weight: bold;
            text-shadow: 0 2px 2px black;
            font-size: 14px;
            padding: 3px 1.5em;
        }
        a:hover {
            background: #a60000;
            background: linear-gradient(0deg, rgba(166, 0, 0, 1) 0%, rgba(105, 105, 105, 1) 100%);
            text-shadow: none;
        }
        a:active {
            background: #a60000;
            background: linear-gradient(0deg, rgba(166, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
        }
    }
}

.grid-container {
    display: grid;
}

.grid-container.a {
    grid-template-columns: auto 200px;
    grid-template-rows: auto auto;
    h3 {
        font-size: large;
        font-weight: bold;
        margin-bottom: 5px;
    }
}
.grid-container.b {
    grid-template-columns: auto auto auto;
    grid-auto-rows: 218px;
    justify-items: start;
    align-items: start;
    .item {
        width: 180px;
        height: auto !important;
        height: 208px;
        color: white;
        padding: 10px 30px 0 0;
        border-top: 1px lightgray solid;
    }
}

.grid-container.c {
    grid-template-columns: 180px;
    grid-auto-rows: max-content;
    justify-content: start;
    justify-items: start;
    .item {
        height: inherit;
        width: 100%;
        padding: 10px 0 0 10px;
    }
    .item.border {
        border-top: 1px lightgray solid;
        border-left: 1px lightgray solid;
    }
    h4 {
        margin: 40px 0 1em 10px;
        font-size: 14px;
    }
    div ul {
        padding-left: 1em;
        li {
            list-style-type: square;
            a {color: white;}
            a:hover {text-decoration: underline;}
        }
    }
}

div.thumb {
    display: flex;
    flex-direction: column;
    a {
        color: white;
        font-weight: bold;
        span {
            font-weight: normal;
        }
    }
    a:hover{
        text-decoration: underline;
    }
}

/*button {
    outline: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
}*/

.play-container > button {
    background: none;
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    img {
        width: 147px;
        border: 1px solid #eee;
    }
}

div.spotlight {
    margin: 10px 0 18px;
}

a.spotlight {
    display: block;
    background: #000000;
    background: linear-gradient(0deg, rgba(105, 105, 105, 1) 0%, rgba(51, 51, 51, 1) 100%);
    text-align: center;
    width: 80px;
    height: 20px;
    border: 1px solid lightgray;
}

a.spotlight:hover {
    background: #a60000;
    background: linear-gradient(0deg, rgba(166, 0, 0, 1) 0%, rgba(51, 51, 51, 1) 100%);
    text-shadow: none;
}

a.spotlight:active {
    background: #a60000;
    background: linear-gradient(0deg, rgba(166, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}