.container {
  min-height: inherit;
}

.row {
  min-height: inherit;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header {
  min-height: 350px;
  background-image: url("/images/pexels-photo-167092.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

main .row {
  min-width: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .tracks {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.dark {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.dark .box {
  max-width: 600px;
  min-height: 200px;
  width: 100%;
  background-color: white;
  border: 2px grey solid;
}
/*# sourceMappingURL=music_app_style.css.map */