/* Reset CSS */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    color:gainsboro; /* Main text colour */
    background-color:rgba(20, 6, 82, 0.884); 
    display: flex;
    flex-direction: column;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
    scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    }
}

/*-------------------------------------------------------------*/
/* Styling for logo */
.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.header {
    margin: 0 0 0 0;
    text-align: center;
}

nav {
    width:100%;
}

h1 {
    font-family: 'Podkova', serif;
    font-size: 400%;
    display:inline;
    background: #454145;
    background: linear-gradient(to bottom, #454145 0%, #D0DBDB 100%);
    background-clip:unset;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-family: 'Podkova', serif;
    font-size: 150%;
    font-style: italic;
    display: block;
    color: gray;
    margin-bottom: 2%;
}

h3 {
    font-family: 'Podkova', serif;
    display: block;
    color: gray;
}

/* styling for text */
.main {
    margin: 1% 5% 1% 5%;
    padding: 0 1% 0 1%;
    display:flexbox;
}

.main p {
    margin-bottom: 2%;
}

.main h1 {
    margin-bottom: 5%;
}

.showtitle {
    font-style: italic;
}

.faq {
    font-style: italic;
    font-weight: bold;
}

/* styling for footer */
.footer {
    margin: 1% 5% 1% 5%;
}

.footer a {
    margin-right: 1%;
}

.footer .fa {
    padding: 10px;
    font-size: 40px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}

/* Add a hover effect */
.fa:hover {
    opacity: 0.7;
}

.fa-gray {
    color:gray;
}

/* Styling for menu */
#menubalk{
    display: flexbox;
    font-family: 'Podkova', serif;
    font-size: large;
    height: 60px;
    margin: 1% 0% 1% 0%;
}

.mainmenu li{
    font-size: x-large;
    list-style-type: none;
    float: left;
    width: 33.3%;
    text-align: center;
}

.mainmenu li a{
    display: block;
    text-decoration: none;
    color: white;
    padding-left: 2%;
}

.mainmenu li a:hover{
    font-size: larger;
    color: lightgreen;
    transition: 0.1s linear;
    border-bottom: 5px solid lightseagreen;
}

.mainmenu, .submenu{
    margin: 0;
    padding: 0;
}

.mainmenu li .submenu li{
    display: none;
    position: relative;
}

.mainmenu li:hover .submenu li{
    display: block;
}

#paragraaf{
    background-color: #cd8500;
    border-top: solid 5px #8b1a1a;
    padding: 10px;
    display: block;
}

.boldtype {
    color: lightgreen;
    font-weight: bold;
}

.episode {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 1%;
    background-color: plum;
    margin-bottom: 3%;
}

.episode h3 {
    color: black;
}

.episode-artwork {
    display: flex;
    width: 15%;
    height: auto;
    object-fit: contain;
    margin-right: 2%;
}

.synopsis {
    display: flex;
    flex-direction: column;
    color: black;
}

a:link {
    color:gainsboro;
}

a:visited {
    color: gray;
}

a:active {
    color:gray;
}

a:hover {
    color:cyan;
}

iframe {
    margin-top: 3%;
}


/* Styling for responsiveness */
/* On screens that are 900px or less, set the background color of the menu to transparent */
@media screen and (max-width: 900px) {
    #menubalk {
        background:none;
    }
}