/* Breakpoints */

/* CSS For Computers */

/* Header */

@media (width < 1000px) {
  .pages img {
    width: 75px;
  }

  a {
    font-size: 24px;
  }

  h1 > a {
    font-size: 36px;
  }
}

/* @media (width < 700px) {
  .pages img {
    width: 50px;
  }

  a {
    font-size: 16px;
  }

  h1 > a {
    font-size: 24px;
  }
} */

/* Burger Menu */

@media (width < 700px) {
  .burger {
    display: block;
  }

  .main-nav .pages.up, .social.up {
    visibility: hidden;
    flex-direction: column;
    position: absolute;
    top: 8rem;
    left: 0;
    right: 0;
    z-index: 1;
    background: black;
    background-image: url(../images/background.png);
    background-size: contain;
    background-attachment: fixed;
    padding: 1rem;
  }

  .main-nav.is-open .pages.up,
  .main-nav.is-open .social.up {
    visibility: visible;
  }
}

/* Footer */

@media (width < 1000px) {
  .main-footer .pages a {
    font-size: 18px;
  }
}

@media (width < 700px) {
  .main-footer .pages a {
    font-size: 12px;
  }
}

/* Music */

/* Top 10 Songs */

@media (width < 1000px) {
  .songs-title {
    font-size: 27px;
  }
}

@media (width < 700px) {
  .songs-title {
    font-size: 18px;
  }

  .songs {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 0;
  }

  .songs-img {
    justify-content: center;
    transform: rotate(-90deg);
  }

  .songs-img img {
    height: 300px;
    display: block;
  }
}

/* Albums */

@media (width < 1000px) {
  .albums-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 700px) {
  .albums-container {
    grid-template-columns: repeat(1, 300px);
    justify-content: center;
  }
}

