
*{
  color: white;
}
img{
  object-fit: contain;
}

body{
  background-color: black;
}

.top{
  width: 90%; 
  /* change */
  margin-left: 5%; 
  margin-top: 1%; 
  margin-bottom: 0;
  background-color: #515151;
  margin-right: 20px;
}

span.guestLink{
  background-color: #515151;
}

p.playAll{
  background-color: #515151;
  color:  rgb(153, 255, 153);
  width: 90%;
  margin: auto;
  margin-top: 0;
  font-weight:bold;
  text-align: center;
  height: 30px;
  font-size: 150%;
}

p.playAll:hover{
  background-color: gray;
  cursor: pointer;
}

div.text{
  text-align: center;
  width: 90%;
  margin: auto;
}

.flexbox-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
}

.childContainer{
  display: flex;
  margin-bottom: 30px;  
}

.cover{
  width: 45%;
  margin-right: 20px;
  max-width: 350px;
}

.cover:hover{
  opacity: 0.3;
  cursor: pointer;
}

.songs{
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}

audio{
  margin-bottom: 0;
}

.audio-container{
  align-self: center;
  align-content: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom:0;
}

.songname{
  background-color: #515151;
  width: 1fr;
  text-align: center;
  font-size: 120%;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 300px;
}

.songButton:hover{
  color: red;
  cursor: pointer;
}