h1 {
  font-family: "Nanum Pen Script", cursive;
}
.singer_screen {
  background-color: rgb(198, 198, 198);
}
.main_photo {
  width: 100%;
}
.singer_photo {
  width: 100%;
  position: relative;
  display: flex;
}
.singer_photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.singer_info {
  position: absolute;
  padding-bottom: 20px;
  padding-left: 20px;
  bottom: 0px;
  background-color: rgba(165, 163, 163, 0.473);
  width: 95%;
}
.singer_info h1 {
  padding: 0;
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 50px;
  margin-bottom: 10px;
}
.singer_info span {
  color: rgb(255, 255, 255);
  font-size: 20px;
}
.singer_icons {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.play_button {
  padding: 15px 15px;
  background-color: rgb(67, 197, 67);
  border-radius: 50%;
  margin-right: 20px;
}
.follow_button {
  padding: 5px 10px;
  border: rgb(147, 147, 147) 1px solid;
  border-radius: 20px 20px 20px 20px;
  margin-left: 20px;
  margin-right: 20px;
}
.top_songs_main {
  width: 100%;
}
.top_songs {
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.top_song {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
}
.song_info1 {
  display: flex;
  align-items: center;
  width: 150px;
}
.song_info1 img {
  height: 45px;
  width: 45px;
  border-radius: 5px;
  object-fit: cover;
  margin-left: 10px;
  margin-right: 10px;
}
.song_info1 span {
  font-size: 16px;
}
.song_info2 span {
  font-size: 14px;
}
.song_info3 span {
  font-size: 14px;
  margin-left: 10px;
  margin-right: 5px;
}
.song_info3 i {
  color: rgb(198, 198, 198);
}
.top_song:hover .song_info3 i {
  color: rgb(136, 136, 136);
}