@import url("https://use.typekit.net/hdo8dse.css");
body {
  background: #000;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

#karaoke {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#karaoke .karaoke-wrapper {
  position: relative;
  background: #000;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 0 40px #000, inset 0 0 40px #000;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.video-wrapper {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.divider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-grow: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.divider img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
}

.video-wrapper[arrange=row] {
  flex-direction: column;
  flex-wrap: nowrap;
}
.video-wrapper[arrange=row] .divider {
  width: auto;
  height: 1px;
}

.video-wrapper[arrange=col] {
  flex-direction: row;
  flex-wrap: nowrap;
}
.video-wrapper[arrange=col] .divider {
  width: 100%;
  height: auto;
}

.video-wrapper[bg=full] {
  background-repeat: no-repeat;
  background-size: cover;
}

img[size=full] {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}

img[size=padding] {
  width: 90vw;
  height: 90vh;
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  padding: 2rem;
}

svg {
  width: 90%;
  height: 80%;
  padding: 2rem;
}

.clip {
  object-fit: cover;
}

.video-wrapper[img=many] {
  justify-content: space-evenly;
}
.video-wrapper[img=many] img {
  max-width: 20vw;
}

:root {
  --lyricDuration: 2.5s;
}

#lyrics {
  position: absolute;
  width: 100%;
  bottom: 5vh;
  text-align: center;
  font-family: cursive;
  font-size: 3.2rem;
  z-index: 995;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 110%;
  letter-spacing: -0.25px;
  color: #fff;
  text-shadow: 0 2px 0 #FFA2D2, 0 -2px 0 #FFA2D2, 2px 0 0 #FFA2D2, -2px 0 0 #FFA2D2;
}
#lyrics [line] {
  position: relative;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
}
#lyrics .run::after {
  content: attr(text);
  position: absolute;
  left: 0;
  top: 11px;
  color: #FFA2D2;
  z-index: 1000;
  overflow: hidden;
  height: 150%;
  width: 100%;
  opacity: 0.6;
  text-shadow: 0 0 15px #FFA2D2;
  animation: run-text var(--lyricDuration) 1 linear;
  background-image: url(../bg/sparkle.gif);
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#lyrics[effect=title] {
  bottom: 45vh;
  font-size: 4rem;
}

@keyframes run-text {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.overlay {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  z-index: 800;
}

/*# sourceMappingURL=s.css.map */
