:root {
  --white: white;
  --black: black;
}

.body {
  background-color: #000;
  font-family: Droid Serif, serif;
}

.container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading {
  color: #fff;
  letter-spacing: 0;
  margin-top: 50px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 8em;
  font-style: italic;
  line-height: 1;
}

.title {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 2em;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.stores {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.link {
  color: #fff;
  text-align: center;
  background-color: #5f5f5f;
  border-radius: 40px;
  min-width: 130px;
  max-width: 160px;
  margin-top: 0;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 24px;
  font-size: 1em;
  line-height: 1.2em;
  text-decoration: none;
  transition: transform .3s;
}

.link:hover {
  transform: translate(0, -8px);
}

.socials {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.link-block {
  width: 20px;
  margin-left: 8px;
  margin-right: 8px;
  transition: transform .3s;
}

.link-block:hover {
  transform: translate(0, -8px);
}

.link-2 {
  color: #fff;
  margin-top: 40px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 2em;
  text-decoration: none;
  transition: transform .3s;
}

.link-2:hover {
  text-decoration: underline;
  transform: translate(0, -8px);
}

.heading-2 {
  color: #fff;
  font-size: 20px;
  font-style: italic;
}

.tour-dates {
  color: #fff;
  margin-bottom: 2px;
  font-size: 16px;
  font-style: italic;
}

.playlist {
  width: 40vw;
  max-width: 100%;
  margin-top: 60px;
  margin-bottom: 40px;
}

.section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.image {
  filter: invert();
}

@media screen and (max-width: 991px) {
  .container {
    justify-content: center;
    height: auto;
  }

  .heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 8.6em;
  }

  .title {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .stores {
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .link {
    margin-top: 16px;
  }

  .socials {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .tour-dates {
    margin-top: 2px;
  }

  .playlist {
    width: 60vw;
    margin-top: 40px;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 7em;
  }

  .title {
    font-size: 1.6em;
  }

  .playlist {
    width: 70vw;
  }
}

@media screen and (max-width: 479px) {
  .stores {
    justify-content: center;
    margin-top: 16px;
  }

  .link {
    min-width: 110px;
    max-width: 120px;
    margin-top: 8px;
    margin-left: 4px;
    margin-right: 4px;
    font-size: .8em;
  }

  .socials {
    margin-top: 24px;
  }

  .link-2 {
    margin-top: 24px;
    font-size: 1em;
  }

  .playlist {
    width: 80vw;
  }
}


