* {
  margin: 0%;
  padding: 0px;
}

.container {
  height: 100vh;
  width: 100vw;
  background-color: #181b18;
  display: flex;
}

/*main area styling starts*/
.main_area {
  height: 90vh;
  width: 70%;
}

.header {
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 20px;
  font-size: 45px;
  color: lime;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding-center: 100px;
}

/*Songs card styling starts*/
.song_list {
  width: 100%;
  height: auto;
  display: flex;
  padding: 50px;
  background-color: #181b18;
  align-items: flex-start;
  flex-wrap: wrap;
}

.audio {
  width: 220px;
  margin: 20px;
  height: 350px;
  overflow: hidden;
  color: white;
  background-color: #181b18;
}

.thumbnail {
  width: 100%;
  height: 250px;
}

.thumbnail > img {
  width: 100%;
}

.play {
  padding: 10px 40px;
  margin-top: 5px;
  border: 2px solid;
  margin-left: 50px;
  border-radius: 10px;
  text-transform: uppercase;
  background-color: #F5F5DC;
  cursor: pointer;
  color: blue;
  transition: 0.4s;
}

.audio_details > h1 {
  margin-left: 8px;
}
/*songs card styling ends*/
.play:hover {
  background-color: rgb(102, 248, 17);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 20%;
}

/*main area styling ends*/

/*side content styling starts*/
.side_content {
  width: 30%;
  background-color: #000000;
  height: 1440px;
  color: khaki;
}

.side_content > img {
  width: 100%;
}
.side_thumbnail {
  margin: 40px;
  width: 300px;
  display: flex;
  align-items: center;
  height: 300px;
  background-color: black;
}

.side_thumbnail > img {
  width: 100%;
}

.playing {
  font-size: xx-large;
  color: khaki;
  text-align: center;
  font-weight: bolder;
  padding: 25px;
}
.audio_play {
  width: 100%;
}

.side_content > h1 {
  margin: 10px;
}
/*Side content styling ends*/