span {
  font-family: "TikTok Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100;
}
a {
  text-decoration: none;
}
.main_content {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_screen {
  width: 400px;
  display: flex;
  height: 780px;
  flex-direction: column;
  align-items: center;
  border: rgba(44, 44, 44, 0.535) 1.3px solid;
  border-radius: 50px;
  padding: 30px 20px;
  margin-right: 30px;
}
.song_photo img {
  width: 350px;
  height: 350px;
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.info_main {
  width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nanum Pen Script", cursive;
  font-weight: 400;
  font-style: normal;
  margin-top: 30px;
}
.song_info {
  display: flex;
  flex-direction: column;
}
.song_info span:first-child {
  font-size: 40px;
  color: rgba(4, 40, 117, 0.889);
}
.song_info span:last-child {
  font-size: 30px;
  color: #e52c54ae;
}
.song_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fbeaeb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.song_icon i {
  color: #e52c54ae;
}
.time_main {
  width: 350px;
  margin-top: 50px;
}
.time_bar {
  display: flex;
  align-items: center;
  position: relative;
}
.song_past {
  width: 200px;
  height: 5px;
  border-radius: 2px;
  background-color: rgba(56, 122, 255, 0.669);
}
.song_current {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(56, 122, 255);
  position: absolute;
  left: 195px;
}
.song_future {
  width: 150px;
  height: 5px;
  border-radius: 2px;
  background-color: rgba(191, 212, 255, 0.669);
}
.song_time {
  font-family: "Nanum Pen Script", cursive;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: space-between;
}
.song_time span {
  color: rgba(56, 122, 255, 0.669);
  font-size: 18px;
}
.play_icons {
  margin-top: 80px;
  width: 270px;
  display: flex;
  justify-content: space-between;
}
.play_icons i {
  font-size: 35px;
  color: rgba(4, 40, 117, 0.889);
}
.volume_main {
  margin-top: 90px;
  display: flex;
}
.volume_main i {
  color: rgb(65, 9, 130);
}
.volume_bar {
  position: relative;
  display: flex;
  align-items: center;
}
.volume_down {
  margin-left: 20px;
  width: 100px;
  height: 5px;
  border-radius: 2px;
  background-color: rgb(132, 59, 196);
}
.volume_current {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(96, 21, 161);
  position: absolute;
  left: 115px;
}
.volume_up {
  margin-right: 20px;
  width: 150px;
  height: 5px;
  border-radius: 2px;
  background-color: rgb(183, 141, 220);
}
.playlist {
  background: rgb(37, 37, 37);
  background: linear-gradient(
    0deg,
    rgb(39, 37, 32) 40%,
    rgb(219, 177, 86) 100%
  );
}
.playlist span {
  color: rgb(255, 239, 232);
}
.playlist_photo img {
  width: 350px;
  height: 350px;
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.5s ease-in-out;
}
.playlist_photo img:hover {
  width: 365px;
  height: 365px;
}
.playlist_info {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  font-family: "Raleway", sans-serif;
}
.playlist_info span {
  transition: all 0.5s ease-in-out;
}
.playlist_info:hover span {
  color: #5f6cff;
}
.playlist_title {
  font-size: 30px;
  font-family: "TikTok Sans", sans-serif;
}
.playlist_username {
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}
.playlist_main {
  margin-top: 20px;
  display: flex;
  width: 100%;
  flex-direction: column;
  max-height: 360px;
  overflow-y: scroll;
}

.playlist_song {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 10px;
}
.playlist_song_photo img {
  width: 50px;
  height: 50px;
  transition: all 0.5s ease-in;
}
.playlist_song_info {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  width: 280px;
}
.playlist_song_icon i {
  color: rgb(255, 239, 232);
}
.song_title {
  font-size: 15px;
  margin-top: 3px;
}
.singer_name {
  font-size: 12px;
  margin-top: 3px;
}
.playlist_song_info span {
  transition: all 0.5s ease-in-out;
}
.playlist_main a:hover .playlist_song .playlist_song_info span {
  color: rgb(135, 177, 255);
}
.playlist_main a:hover .playlist_song_photo img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}
.nav_bar {
  padding-bottom: 10px;
  width: 90%;
}
.nav_bar i {
  font-size: 20px;
  transition: all 0.3s ease-in;
}
.nav_bar i:hover {
  font-size: 22px;
  color: rgb(255, 152, 152);
}