.song-info-container h1,
.song-info-container h2,
.song-info-container h3,
.lyrics-container h3 {
  text-align: center;
  font-family: OhMaria01, OhMaria02;
  font-weight: normal;
  margin: 5%;
}
.song-info-container h1 {
  font-size: 58px;
}
.song-info-container h2 {
  font-size: 52px;
}
.song-info-container h3,
.lyrics-container h3 {
  font-size: 44px;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .song-info-container h1 {
    font-size: 46px;
  }
  .song-info-container h2 {
    font-size: 40px;
  }
  .song-info-container h3 {
    font-size: 32px;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .song-info-container h1 {
    font-size: 46px;
  }
  .song-info-container h2 {
    font-size: 40px;
  }
  .song-info-container h3 {
    font-size: 32px;
  }
}
/* For very weirdly small displays*/
@media only screen and (max-width: 250px) {
  .song-info-container h1 {
    font-size: 40px;
  }
  .song-info-container h2 {
    font-size: 34px;
  }
  .song-info-container h3 {
    font-size: 26px;
  }
}
.album-art-container {
  align-items: center;
  height: 300px;
  padding-top: 5%;
}
.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;
  }
}
.lyrics-container,
.song-info-container {
  height: auto;
  padding-left: 25%;
  padding-right: 25%;
  text-align: center;
  font-family: OhMaria01, OhMaria02;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .lyrics-container,
  .song-info-container {
    padding-left: 15%;
    padding-right: 15%;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .lyrics-container,
  .song-info-container {
    padding-left: 15%;
    padding-right: 15%;
  }
}
/* Margin 0 set in styles.css */
.lyrics-text-container,
.song-info-text-container {
  font-size: 36px;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .lyrics-text-container,
  .song-info-text-container {
    font-size: 24px;
  }
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 414px) {
  .lyrics-text-container,
  .song-info-text-container {
    font-size: 24px;
  }
}
/* For very weirdly small displays*/
@media only screen and (max-width: 250px) {
  .lyrics-text-container,
  .song-info-text-container {
    font-size: 20px;
  }
}
