/*
#7E0000
#9098A2
#191919
#000000
*/

body {
  padding: 0;

  background-color: #191919;
  color: #ffffff;

  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

div {
  box-sizing: border-box;
}

main {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;

  background-color: #000000;
  box-shadow: 0 0 16px 0 #000000c8;
  border-radius: 10px;
}

header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0;
}

section {
  padding: 0 20px;
  text-align: center;
}

h1 {
  margin: 0 0 10px 0;
  font-size: 3em;
  font-weight: 600;
  text-align: center;
}

p.pre-title {
  margin: 1em 0 0;
}

p.post-title {
  margin-top: -2px;
}

.membership-band-name {
  white-space: nowrap;
}

/* Header */

header.index {
  background-image: url('../img/bandbond-og-image.jpg');
}

#header-content {
  padding: 20px;
  background-image: linear-gradient(#00000080, #000000c0, #000000ff);
  text-align: center;
}

#header-content.index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 280px;
  background-image: linear-gradient(#00000000, #00000000, #000000c0, #000000ff)
}

#header-content.profile {
  padding-top: 60px;
}

#header-content.post {
  padding-top: 100px;
}

#header-content.post-song {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 500px;
  background-image: linear-gradient(#00000000, #00000000, #000000ff);
}

#header-content.post-song h1 {
  font-size: 2em;
}

#profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid #9098A2;
}

#profile-image.avatar {
  border: none;
  opacity: 0.33;
}

/* CTA button */

a.big-red {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;

  background-color: #7E0000;
  color: #ffffff;

  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}

/* Badges */

.badge {
  display: inline-block;
  vertical-align: middle;
}

#app-store-badge {
  width: 120px;
  height: 40px;
  padding: 6%;
}

#google-play-badge {
  height: 60px;
}

/* Footer */

footer {
  padding: 30px;
  text-align: center;
}

footer img {
  max-width: 100%;
}

#app-description {
  font-size: 0.8em;
}

/* Media queries */

@media (max-width: 500px) {
  body {
    margin: 0;
    background-color: #000000;
  }

  main {
    box-shadow: none;
    border-radius: 0;
  }

  header {
    border-radius: 0;
  }

  header.index {
    background-size: 100vw;
    background-position: top center;
  }

  #header-content.index {
    height: 240px;
  }

  #header-content.post-song {
    height: 100vw;
  }

}

@media (max-width: 320px) {

  h1 {
    font-size: 2em;
  }

  #header-content {
    background-image: linear-gradient(#000000d0, #000000d0, #000000ff);
  }

  #header-content.post {
    padding-top: 50px;
  }

  #header-content.profile {
    padding-top: 40px;
  }

  #header-content.index {
    height: 180px;
  }

  #profile-image {
    width: 120px;
    height: 120px;
  }

}
