@import url("https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300;700&display=swap");
html {
  scroll-snap-type: y mandatory;
}

body {
  font-family: "Advent Pro", sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000;
  color: #fff;
}
body h1 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
body .tagline {
  margin-bottom: 1rem;
}

section {
  min-height: 100vh;
  scroll-snap-align: end;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#landing .band-background-image {
  background-image: url("cuatreros-band-playing.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
}

#music-platforms .streaming-links {
  margin-top: 0.5rem;
  padding: 1rem 2em;
  display: flex;
  align-items: center;
}
#music-platforms .streaming-links a {
  border: 1px solid #fff;
  border-radius: 1rem;
  margin: 0 0.5rem;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
#music-platforms .streaming-links a img {
  height: 4rem;
}
#music-platforms .streaming-links a:hover {
  transform: scale(1.1) rotate(-1deg);
}
#music-platforms .youtube {
  margin-top: 0.5rem;
}

#about .band-background-image {
  background-image: url("cuatreros-band.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
}
#about .bio {
  margin: -20rem auto 0 auto;
  max-width: 1000px;
  text-align: center;
}

#art h1 {
  margin-top: 10rem;
}
#art .art-grid {
  margin: 0 auto;
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#art .art-item {
  width: 40%;
  margin: 1rem;
  overflow: hidden;
}
#art .art-item img {
  width: 100%;
  height: auto;
}

#connect .band-background-image {
  background-image: url("cuatreros-band-dark-skull.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
}
#connect .social-buttons {
  background-color: black;
  padding: 1em 2em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#connect .social-buttons a {
  text-decoration: none;
}
#connect .social-button {
  border-radius: 50%;
  border: 2px solid #fff;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: transform 0.3s ease;
}
#connect .social-button:not(:last-of-type) {
  margin-right: 1em;
}
#connect .social-button:hover {
  transform: scale(1.2) rotate(-5deg);
}
#connect .social-button:last-child {
  margin-right: 0;
}

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