.sidebar{
  background-image:linear-gradient(180deg,#e7ce4a,#8c6a2e);
  background-color:#8c6a2e;
}

#top{margin:0;}
.section-heading{grid-row:-2;}

.audioscope1,.audioscope2{
  display:block;
  border-style:solid;
  border-width:0.2rem;
  border-color:#141414 #323232 #323232 #141414;
}
.audioscope1{
  height:15vh;
  margin-bottom:0.5vw;
}
.audioscope2{height:5vh;}

.song-list{
  display:grid;
  justify-content:space-between;
}

.song-row{
  display:grid;
  justify-content:space-between;
  width:82vw;
}

.song-container{
  display:flex;
  flex-direction:column;
  width:25vw;
  grid-row:1;
  justify-content:space-between;
  border-width:0.25rem;
  border-color:#323232 #141414 #141414 #323232;
  border-style:solid;
  background-color:#242424;
}
.song-container .song-title{
  font-weight:bold;
  display:grid;
  justify-content:center;
  text-align:center;
}
.song-container .song-artist{
  display:grid;
  justify-content:center;
  text-align:center;
}
.song-container audio{
  width:auto;
  margin:0.4rem;
  background-color:#191919;
  border-width:0.2rem;
  border-style:solid;
  border-color:#141414 #323232 #323232 #141414;
  border-radius:0;
}

#bottomMessage{
  margin:0;
  margin-top:1vw;
}

@media (max-width:760px){
  .song-row{width:97vw;}
  .song-container{width:30vw;}
  .song-container audio{height:unset;}
}