body {
  background-color: #222;
  font-family: Helvetica;
  margin: 20px;
  color: #eee;
}

.songs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.songs .song {
  flex-grow: 1;
  flex-shrink: 1;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5333333333);
  padding: 10px;
  border-radius: 7px;
  margin: 10px;
}
.songs .song .main {
  display: flex;
  flex-direction: column;
}
.songs .song .main .text {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2666666667);
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 0 10px 0;
}
.songs .song .main .text * {
  margin: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.songs .song .main .text h4 {
  text-indent: 15px;
  color: #bbb;
}
.songs .song .main audio {
  width: 100%;
  border-radius: 5px;
  margin: 10px 0;
  filter: opacity(0.9);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5333333333);
}
.songs .song .info {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.2666666667);
  border-radius: 5px;
  padding: 5px 0;
}
.songs .song .info b {
  font-size: 1.3em;
  color: rgba(238, 238, 238, 0.6666666667);
}
.songs .song .info .mb {
  font-size: 0.8em;
}
.songs .song .info a {
  color: #eee;
  text-decoration: none;
}
.songs .song .info a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */