:root {
  --gap: 30px;
  --bangers: "Bangers", cursive;
  --mid: #edeaea;
  --blue: #428bca;
  --slate: #ebf1f6;
}

body, html {
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
}

html, body, html > * {
  box-sizing: border-box;
}

body {
  background-color: #ccc;
  font-family: "Roboto Condensed", sans-serif;
  min-height: 100dvh;
  background-image: url("../media/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  font-size: 16px;
}

.container, container {
  max-width: 800px;
  width: 100%;
  padding: 0 clamp(10px, 2vw, var(--gap));
  margin: 0 auto;
}
@media (max-width: 500px) {
  .container, container {
    padding: 0;
  }
}

.footer .content {
  min-height: 5dvh;
  padding: var(--gap) 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}

.d-none {
  display: none;
}

.herobanner {
  width: 100%;
  height: auto;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  gap: 2px;
  margin: 0;
  margin-top: -6px;
}

.menu li {
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
  width: 100%;
  text-align: center;
  font-size: clamp(15px, 3vw, 26px);
}
.menu li a {
  font-family: var(--bangers);
  text-decoration: none;
  color: #36342F;
  box-shadow: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.menu li:not(.active) {
  background-color: var(--mid);
}
.menu li:not(.active) a {
  color: var(--blue);
}

main {
  min-height: 40dvh;
  background: #fff;
  padding: var(--gap);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

section {
  display: block;
  align-items: center;
  flex-direction: column;
  gap: var(--gap);
}
section:not(:first-child) {
  border-top: 1px solid #ccc;
  padding-top: var(--gap);
}
section:last-child {
  margin-bottom: var(--gap);
}

h2, .h2 {
  font-family: "Bangers", cursive;
  color: #f2a500;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
}
h2::first-letter, .h2::first-letter {
  font-size: 1.2em;
}

p {
  font-family: "Fira Sans", "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

.seasonsnav {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  gap: 2px;
  margin: 0;
  margin-top: -6px;
  width: 100%;
  gap: 1em;
}
.seasonsnav a {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 15px 15px;
  background: var(--slate);
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--bangers);
  color: #000;
  border-radius: 10px 10px 0 0;
}
.seasonsnav a:not(.active) {
  background-color: #fff;
  color: var(--blue);
}
@media (max-width: 500px) {
  .seasonsnav {
    gap: 0;
  }
  .seasonsnav a {
    padding: 15px 5px;
    font-size: 16px;
  }
  .seasonsnav a .word {
    display: none !important;
  }
}

.season {
  background-color: var(--slate);
  padding: 0;
}
.season:not(.active) {
  display: none;
}
.season .season-title {
  font-family: var(--bangers);
  font-size: 28px;
  margin-bottom: var(--gap);
  display: none;
}

.episodes {
  display: flex;
  flex-direction: column;
}
.episodes .episode {
  display: flex;
  flex-direction: row;
  gap: var(--gap);
  justify-content: space-between;
}
.episodes .episode:not(:first-child) {
  border-top: 1px solid #ccc;
}
.episodes .episode .number {
  --size: 40px;
  font-family: var(--bangers);
  font-size: clamp(20px, 5vw, 30px);
  margin-bottom: 0.2em;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  margin: 0;
  color: var(--blue);
}
.episodes .episode .name {
  margin-right: auto;
}
.episodes .episode .name.sub {
  font-size: 16px;
  font-style: normal;
  color: var(--blue);
}
.episodes .episode audio {
  width: 100%;
  align-self: center;
  display: flex;
  justify-self: flex-end;
  max-width: 60%;
  margin-left: auto;
}
@media (max-width: 500px) {
  .episodes .episode {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 5px 0;
  }
  .episodes .episode .number {
    --size: 20px;
    padding: 5px 10px;
    padding-left: 15px;
  }
  .episodes .episode .name {
    width: 60%;
    margin: 0 auto 0 0;
    display: flex;
    height: auto;
    align-items: center;
  }
  .episodes .episode audio {
    width: 100%;
    margin-left: 0;
    height: 30px;
    max-width: 100%;
  }
}

.credits ul {
  list-style-type: none;
}
.credits ul li {
  font-weight: 600;
  margin-bottom: 1em;
}
.credits ul li ul {
  list-style-type: none;
  margin-top: 0.5em;
}
.credits ul li ul li {
  margin-bottom: 0.2em;
  font-size: 0.8em;
  font-weight: normal;
}

.extras {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.extras .entry {
  padding: 10px 20px;
  background-color: #fbfbfb;
}
.extras .entry .title {
  color: var(--blue);
}
.extras .entry .description {
  font-weight: 300;
  font-size: 14px;
}/*# sourceMappingURL=main.css.map */