@import url('https://fonts.googleapis.com/css?family=Acme&display=swap');

html {
  font-size: 16px;
  font-family: "Acme", sans-serif;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 760px) {
  html {
    font-size: 26px;
  }
}

body {
  margin: 0;
  padding: 8px 0;
  position: relative;
}

.header-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 8px;
  color: #cc6600;
}

.about-text {
  text-align: center;
  font-size: 1.35rem;
  color: hsla(0, 0%, 30%, 1);
  padding-bottom: 18px;
}

.about-text div {
  padding-bottom: 8px;
}

.player-wrapper {
  display: none;
  box-sizing: border-box;
  position: relative;
  width: 100vw;
  height: calc(100vw*0.5625);
}

.previous-button,
.next-button {
  position: absolute;
  top: 2%;
  font-size: 8vw;
  color: white;
  text-shadow: 0px 0px 12px #000000;
  cursor: pointer;
  z-index: 999;
}

.previous-button {
  left: 8px;
}

.next-button {
  right: 8px;
}

.player-wrapper .video-title {
  position: absolute;
  z-index: 999;
  top: 18%;
  left: 4vw;
  width: 92vw;
  color: white;
  text-align: center;
  text-shadow: 0px 0px 12px #000000;
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-wrapper .loading-spinner {
  position: absolute;
  top: 10%;
  left: 33vw;
  width: 50vw;
  border: none;
  background-color: transparent;
  padding: 0;
  outline: 0;
  z-index: 950;
}

.player-wrapper .big-play-button {
  position: absolute;
  top: 32%;
  left: 33vw;
  width: 34vw;
  border: none;
  background-color: transparent;
  padding: 0;
  outline: 0;
  cursor: pointer;
  z-index: 950;
  display: none;
}

.player-bottom-ad-blur {
  box-sizing: border-box;
  position: absolute;
  height: 5vh;
  min-height: 110px;
  /* left: 20px; */
  /* right: 20px; */
  bottom: 34px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 740px;
  border-radius: 12px;
  z-index: 900;
  -webkit-backdrop-filter: blur(1vw);
  backdrop-filter: blur(1vw);
}

.playlist-intro {
  display: none;
  text-align: center;
  font-size: 1.21rem;
  padding-top: 32px;
  padding-bottom: 16px;
  color: hsla(0, 0%, 66%, 1);
}

.playlists-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 8px;
  margin: auto;
  max-width: 1024px;
}

.playlist-item {
  position: relative;
  box-sizing: border-box;
  /* flex: 0 1 24%; */
  flex: auto;
  min-width: 46%;
  margin: 12px 10px;
  padding: 14px;
  font-size: 1.7rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background-color: hsla(0, 0%, 95%, 1);
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
  min-height: fit-content;
}

.playlist-item-image {
  width: auto;
}

.byob-youtube-link {
  cursor: auto;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.playlist-item:hover {
  background-color: #e9e9e9;
  border-color: #cc6600;
}

.footer {
  margin-top: 10vh;
  text-align: center;
}

.footer img {
  max-width: 100%;
}