:root {
  --jester-purple-dark: #6b2e8e;
  --jester-purple-darkest: #2f005e;
  --main-bg-color: #20003f;
  --jester-green-light: #0b9f2a;
  --jester-green-darkened: #005d00;
  --jester-green-darkest: #004900;
  --anchor-offset: -5vh;
  --navbar-height: 5vh;
  --header-height: 95vh;
  --bandcamp-link-color: #9a64ff;
}

body {
  background-color: var(--main-bg-color);
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  overflow-x: hidden;
}

a.anchor {
  display: block;
  position: relative;
  top: var(--anchor-offset);
  visibility: hidden;
}
.content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#header {
  height: var(--header-height);
  white-space: nowrap;
  text-align: center;
}
.img-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#header img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 80vh;
}
#header-logo {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
#header-logo img {
  max-width: 100%;
  vertical-align: middle;
}

/* Style the navbar */
#navbar {
  height: var(--navbar-height);
  z-index: 1;
  overflow: hidden;
  background-color: var(--jester-green-darkened);
}
#navlogo {
  flex: 0 0 50%;
  display: none;
}
#navbar ul {
  flex: 0 0 50%;
  display: flex;

  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar li {
  flex: 0 0 auto;
}

/* Navbar links */
#navbar ul a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
/*#navbar-right {
  flex-grow: 10;
  align-items: center;
  justify-content: space-between;
  display: flex;
}*/
#navbar-content {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 100%;
}

#navbar-content img {
  height: 6vh;
}
/* Page content */
.content {
  padding: 0;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
  padding-top: 0;
}
.icons {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.icons a {
  text-align: center;
  color: var(--bandcamp-link-color);
}
#listen {
  padding-bottom: 10px;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: var(--bandcamp-link-color);
}
.icons i {
  font-size: 40px;
}
#watch {
  margin-top: 20px;
}
.sticky-video {
  top: var(--navbar-height);
  padding: 0;
  margin-top: 0 !important;
}
.sticky-video h2 {
  display: none;
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
/*.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
*/
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
/*.sticky + .content {
  padding-top: 60px;
} */

.yt-container {
  z-index: 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about p {
  padding-left: 5%;
  padding-right: 5%;
  text-align: justify;
}
.bc-container {
  z-index: 0;
  position: relative;
  max-width: 700px;
  height: 241px;
  margin-left: auto;
  margin-right: auto;
}
.bc-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#bc-slim {
  display: block;
}
#bc-big {
  display: none;
}
.content-item {
  margin-bottom: 20px;
  padding: 40px 0;
}
.center {
  text-align: center;
}
.content-item h2 {
  margin-top: 0;
  text-align: center;
}

.green {
  background-color: var(--jester-green-darkest);
}
.purple {
  background-color: var(--jester-purple-darkest);
}
/*style="border: 0; width: 700px; height: 241px"*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* .bc-container {
    height: calc(100vw * 1.6);
  }
  #bc-big {
    display: block;
  } */
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* .bc-container {
    height: calc(100vw * 1.6);
  }
  #bc-big {
    display: block;
  } */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .content {
    max-width: 768px;
  }
  #bc-big {
    display: none;
  }
  #bc-slim {
    display: block;
  }
  .bc-container {
    height: 241px;
  }
  .sticky-video {
    padding-top: 20px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
