#cover {
  display: grid;
  grid-template-columns: 1fr;
  width: 100vw;
  gap: 0;
}
@media screen and (min-width: 750px) {
  #cover {
    grid-template-columns: repeat(2, 1fr);
  }
}
#cover img {
  width: 100%;
  height: auto;
}
#cover div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--barnRed);
  color: var(--white);
  padding: 2em 1em;
}
#cover div p {
  text-align: center;
}
@media screen and (min-width: 800px) {
  #cover div p {
    width: 80%;
  }
}
@media screen and (min-width: 900px) {
  #cover div p {
    width: 65%;
  }
}
@media screen and (min-width: 1024px) {
  #cover div p {
    width: 50%;
  }
}

#streaming {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
#streaming #platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1em;
  width: 75vw;
  justify-content: space-around;
}
@media screen and (min-width: 600px) {
  #streaming #platforms {
    grid-template-columns: repeat(4, 1fr);
  }
}
#streaming #platforms .platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--darkRed);
  text-decoration: none;
}
#streaming #platforms .platform .platform-icon {
  font-size: 5em;
}
#streaming #platforms .platform span {
  text-align: center;
  font-family: "Palatino", serif;
}
#streaming #platforms .platform:hover {
  color: var(--red);
}

/*# sourceMappingURL=album.css.map */
