#music-spotlight-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 20px;
  background-color: #303030;
  border-radius: 25px;
}

#music-spotlight-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

#music-spotlight-title h1 {
  font-family: "Montserrat";
  font-size: 38px;
  color: white;
  margin: 20px;
  border-bottom: 4px solid #505050;
}

#music-spotlight-title p {
  font-family: "Railway";
  font-size: 14px;
  color: gray;
}

#music-spotlight-current {
  display: flex;
  flex-direction: row;
  justify-content: center;
  alight-items: center;
  height: 200px;
}

#music-spotlight-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin: 20px;
  flex-flow: wrap;
}

.spotlight-arrow {
  background: none;
  border: none;
  margin: 5px;
  cursor: pointer;
}

.spotlight-arrow img {
  transition: 200ms;
}

.spotlight-arrow:hover img {
  filter: invert(40%);
}

#spotlight-left-arrow {
  transform: rotate(180deg);
}

.spotlight_work {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: transparent;
  width: 60px;
  transition: 300ms;
  cursor: pointer;
}

.spotlight_work img {
  width: 50px;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 10px;
  margin: 5px;
}

.spotlight_work:hover {
  background-color: #505050;
}

.spotlight_selected_work {
  background-color: #707070 !important;
}

#spcw-side-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 20%;
}

.spcw-hidden {
  visibility: collapse !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: none !important;
}

.spcw-ebtn {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 8px;
  text-decoration: none;
  color: white;
  font-family: "Raleway";
  background-color: transparent;
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  transition: 500ms;
}

#spcw-img {
  border-radius: 25px;
  height: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 20px;
}

#spcw-title {
  font-family: "Montserrat";
  font-size: 28px;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
}

#spcw-whyp-btn {
  border-color: rgb(96, 165, 250);
}

#spcw-whyp-btn:hover {
  background: rgb(96, 165, 250);
}

#spcw-yt-btn {
  border-color: #D00000;
}

#spcw-yt-btn:hover {
  background: #D00000;
}

#spcw-desc {
  margin-top: 65px;
  margin-left: 20px;
  font-family: "Raleway";
  font-size: 18px;
  color: white;
  width: 40%;
}

@media (orientation: portrait) {
  #music-spotlight-title h1 {
    font-size: 60px;
  }

  #music-spotlight-title p {
    font-size: 26px;
  }

  #spcw-title {
    font-size: 34px;
  }

  #spcw-desc {
    font-size: 26px;
    margin: 40px;
  }

  .spcw-ebtn {
    font-size: 26px;
  }

  #spcw-img {
    height: 220px;
    margin: 40px;
  }

  #music-spotlight-current {
    height: 400px;
  }

  .spotlight_work {
    width: 100px;
  }

  .spotlight_work img {
    width: 90px;
  }

  .spotlight-arrow img {
    width: 50px;
  }

  #spcw-side-container {
    margin-top: -100px;
  }
}
