body {
    background-color: #121212;
    color: white;
    font-family: 'Urbanist', sans-serif;
    margin: 0;
}

.showpage {
    background-image: linear-gradient(to right, black, transparent 70%), var(--bg-url);
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
}

.navs {
    position: fixed;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to right, black, transparent 70%), var(--bg-url);
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
    z-index: 200;
}

nav {
    margin: 0 50px;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

#mainNav {
    top: 0;
    border-bottom: 1px solid #a6a6a6;
}

#mainNav li {
    display: flex;
    text-transform: uppercase;
}

#mainNav a {
    margin: auto 20px;
    font-weight: 600;
    font-size: 18px;
}

/* Schedule page */
#schedule ul {
    list-style-type: none;
    width: 70%;
    margin: auto;
}

#schedule li {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

#schedule .picture {
    min-width: 350px;
    max-width: 350px;
    padding: 0 20px;
}

#schedule .picture img {
    width: 100%;
}

@media (max-width: 960px) {
    #schedule .picture {
        min-width: 240px;
        max-width: 240px;
    }
}
@media (max-width: 700px) {
    #schedule .picture {
        min-width: 120px;
        max-width: 120px;
    }
}
@media (max-width: 500px) {
    #schedule .picture {
        min-width: 0;
    }
    #schedule .picture img {
        display: none;
    }
}

#schedule .time, #schedule .title {
    font-size: 20px;
    font-weight: bold;
}

#schedule .time {
    width: 35px;
}

#schedule .desc {
    font-size: 16px;
}

#schedule .title a {
    color: white;
    text-decoration: none;
}
#schedule .title a::before {
    content: '\25B6\FE0F\0020';
    font-weight: normal;
}
#schedule .title a:hover {
    color: gray;
    text-decoration: underline;
}

/* Show details page */
#showNav {
    top: 70px;
    max-height: 40px;
    overflow: hidden;
}

#showNav ul {
    padding: 10px;
}

#showNav li {
    margin: auto 20px;
}

#showNav li:first-of-type {
    font-weight: bold;
}

#intro {
    margin: 80px;
    scroll-margin-top: 130px;
    padding-top: 400px;
}

@media (min-width: 450px) {
    #intro {
        max-width: 80%;
    }
}
@media (min-width: 960px) {
    #intro {
        padding-top: 200px;
        max-width: 45%;
    }
}

#intro .title {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
}
#intro .subtitle {
    font-size: 30px;
    font-style: italic;
    font-weight: normal;
    margin: 0;
}

#intro .time {
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 18px; 
    color: royalblue;
    padding: 20px 0;
}

#intro .desc {
    font-size: 18px;
}

#intro .last-ep {
    padding-top: 50px;
    font-size: 18px;
    font-weight: 400;
}

#intro .last-ep .metadata {
    display: flex;
    list-style-type: none;
    padding: 0;
    font-weight: bold;
}

#intro .last-ep .metadata .static {
    font-weight: normal;
}

#intro .infos li, #intro .last-ep .metadata li {
    margin-right: 20px;
}

#episodes {
    scroll-margin-top: 130px;
    margin-top: 130px;
    padding: 10px 80px;
    background-color: rgba(0,0,0,0.7);
}

#episodes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#episodes-grid .ep {
    margin: 15px 0;
    max-width: 350px;
}

#episodes-grid .ep .number {
    font-weight: bold;
}

#episodes-grid .ep .date {
    color: gray;
    padding-left: 3px;
}