html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
/* CSS for navigation */
/* UTILITIES */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
}
.navbar a {
  color: #fff;
  text-decoration: none;
}
.navbar li {
  list-style: none;
}
.navbar .mobile-nav-logo {
  display: none;
}
.navbar .nav-links {
  width: 100%;
}
.navbar .nav-links input[type=checkbox] {
  display: none;
}
.navbar .nav-links .hamburger {
  display: none;
  font-size: 30px;
  user-select: none;
}
.navbar .nav-links .menu {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
}
.navbar .nav-links .menu li a {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  filter: drop-shadow(2px 2px 6px #000000);
}
.navbar .nav-links .menu li a:hover {
  color: #fade98;
  transition: 0.4s ease all;
}
.navbar .nav-links .menu .nav-logo {
  width: 350px;
  height: auto;
  padding: 0px 20px;
  filter: drop-shadow(2px 2px 3px #000000);
}
@media only screen and (max-width: 768px) {
  .navbar .mobile-nav-logo {
    display: inline-block;
    width: 250px;
    margin-right: 30px;
    height: auto;
  }
  .navbar .nav-links {
    width: unset;
  }
  .navbar .nav-links input[type=checkbox]:checked ~ .menu {
    display: block;
  }
  .navbar .nav-links .hamburger {
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 10px;
    border-bottom: 30px;
    background-color: #151515;
    border-radius: 30px;
  }
  .navbar .nav-links .menu {
    display: none;
    position: absolute;
    background-color: #151515;
    right: 0;
    left: 0;
    top: 165px;
    text-align: center;
    padding: 30px 0;
    z-index: 999;
  }
  .navbar .nav-links .menu .nav-logo {
    display: none;
  }
  .navbar .nav-links .menu li:hover {
    display: inline-block;
    transition: 0.4s ease all;
  }
  .navbar .nav-links .menu li + li {
    margin-top: 20px;
  }
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4rem;
  padding: 20px 0;
  background-color: #222;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
.home .youtube-hero {
  text-align: center;
}
.home h1 {
  font-size: 3em;
}
.home .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.home .video-container iframe,
.home .video-container object,
.home .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home iframe {
  padding-top: 20px;
}
@media only screen and (max-width: 480px) {
  .home .youtube-hero h1 {
    font-size: 1.75em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .home .youtube-hero h1 {
    font-size: 2.5em;
  }
}
.bio {
  margin: 20px 0;
}
.bio .intro h1 {
  font-size: 2.5em;
  text-align: center;
}
.bio .intro p {
  padding: 30px;
  margin: 20px 0;
  background-color: #151515;
  opacity: 0.8;
}
.bio .members .member {
  display: flex;
  flex-direction: row;
  padding: 30px;
  background-color: #151515;
  opacity: 0.8;
  margin-bottom: 20px;
}
.bio .members .member .details {
  padding: 0 20px 0 0;
}
.bio .members .member .details .name h2 {
  color: #fade98;
}
.bio .members .member .details .influences {
  margin-top: 20px;
}
.bio .members .member .photo {
  max-width: 450px;
}
.bio .members .member .photo img {
  max-width: 430px;
  height: auto;
}
.bio .members .member:nth-child(odd) {
  flex-direction: row-reverse;
}
.bio .members .member:nth-child(odd) .details {
  padding: 0 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .bio .members .member {
    flex-direction: column-reverse !important;
  }
  .bio .members .member .photo {
    max-width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
  .bio .members .member .photo img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 900px) {
  .bio .members .member .photo img {
    max-width: 350px;
  }
}
.shows h1 {
  text-align: center;
  font-size: 3em;
}
@media only screen and (min-width: 1921px) {
  body {
    background-size: unset !important;
  }
}
body {
  background-image: url('../images/background-image.png');
  background-color: #0b1727;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  font-family: 'Raleway', sans-serif;
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  filter: drop-shadow(2px 2px 6px #000000);
  color: #ffffff;
}
#page-container {
  position: relative;
  min-height: 100vh;
}
#content-wrapper {
  padding-bottom: 2.5rem;
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}
.bold {
  font-weight: bold;
}
