h1 {
  font-size: 38px;
  font-family: ohMaria01, ohMaria02;
  text-align: center;
}
/* For desktop displays */
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  h1 {
    font-size: 48px;
  }
}
.song-selection-grid {
  height: auto;
  padding-left: 25%;
  padding-right: 25%;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .song-selection-grid {
    padding-left: 15%;
    padding-right: 15%;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .song-selection-grid {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.album-info-div {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.album-info-div h2 {
  font-family: ohMaria01, ohMaria02;
  font-size: 40px;
  font-weight: normal;
  margin: 5%;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .album-info-div h2 {
    font-size: 36px;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .album-info-div h2 {
    font-size: 32px;
  }
}
.album-art-container {
  align-items: center;
  height: 300px;
}
.album-art-container img {
  max-height: 100%;
  display: block;
  margin: auto;
  box-shadow: 0px 1px 5px black;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .album-art-container {
    height: 200px;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .album-art-container {
    height: 150px;
  }
}
/* For very weirdly small displays*/
@media only screen and (max-width: 250px) {
  .album-art-container {
    height: 100px;
  }
}
.song-link-container {
  display: grid;
  column-gap: 1%;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}
.song-link-container li {
  margin-top: 10%;
  list-style-type: none;
}
.song-link-container.single {
  grid-template-columns: 1fr;
}
/* For most displays */
@media only screen and (min-width: 415px) {
  /* Remove margin of the top row of 2 column grid */
  .song-link-container li:nth-child(-n + 2) {
    margin-top: 0;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .song-link-container {
    grid-template-columns: repeat(1, 1fr);
  }
  /* Remove margin of the top row of 1 column grid */
  .song-link-container li:nth-child(-n + 1) {
    margin-top: 0;
  }
}
.song-link-container li,
.song-link-container li a,
.song-link-container li h3 {
  font-family: ohMaria01, ohMaria02;
  font-size: 32px;
  margin-top: 10%;
  margin-bottom: 0%;
  font-weight: normal;
  display: inline;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .song-link-container li,
  .song-link-container li a,
  p {
    font-size: 28px;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .song-link-container a,
  p {
    font-size: 24px;
  }
}
.song-link-container a:link {
  color: inherit;
}
.song-link-container a:visited {
  color: inherit;
}
.song-link-container a:hover {
  color: grey;
}
.song-link-container a:active {
  text-decoration: inherit;
  color: inherit;
}
