h2 {
  color: #00bfbf;
}

/* lyrics */

.lyric-block {
  width: 500px;
  color: #ff6600;
  background-color: #fff0f5;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1rem;
}

.lyric {
  position: relative;
  width: fit-content;
  padding-left: 50px;
}

.lyric::after {
  position: absolute;
  right: -100%;
  content: attr(text);
}

/* content card */

.content-card {
  margin: 0 50px;
}

.content-card-img {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.6);
  transform: translatey(0px);
  animation: float-slow 3s ease-in-out infinite;
  width: 50px;
  border-radius: 25%;
}

/* carousel */

.carousel-item {
  height: 40vh;
  background: no-repeat center center scroll;
  background-size: cover;
  object-fit: cover;
}

.card > iframe {
  width: 100%;
  height: 250px;
}

@media screen and (max-width: 576px) {
  .carousel-item {
    height: 30vh;
    background: no-repeat center center scroll;
    background-size: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 1200px) {
  .carousel-item {
    height: 60vh;
    background: no-repeat center center scroll;
    background-size: cover;
    object-fit: cover;
  }
}
