:root {
  --gray--muted: #9ca3af;
  --bg--black: #000;
  --text--white: #fff;
  --accent--red: #dc2626;
  --accent-hover--dark-red: #b91c1c;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.6;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 36px;
}

p {
  max-width: 60ch;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.heading-1 {
  font-size: 64px;
}

.h1 {
  margin-bottom: 24px;
  font-size: 64px;
}

.h2 {
  margin-bottom: 20px;
}

.paragraph {
  font-size: 16px;
  line-height: 1.6;
}

.body {
  color: #fff;
  background-color: #000;
  font-size: 16px;
  line-height: 1.6;
}

.link {
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.section.is-dark {
  background-color: #111;
}

.section.is-darker {
  background-color: #0a0a0a;
}

.section.is-light {
  background-color: #1f1f1f;
}

.btn {
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 600;
  transition: opacity .2s;
  display: inline-block;
}

.btn.btn-outline {
  color: #fff;
  background-color: #0000;
  border: 2px solid #000;
}

.btn.btn-outline:hover {
  color: #000;
  background-color: #fff;
}

.btn-primary {
  color: #fff;
  background-color: #dc2626;
  border: 1px #000;
}

.btn-primary:hover {
  background-color: #b91c1c;
}

.heading-2 {
  margin-bottom: 12px;
}

.heading-2.is-center {
  text-align: center;
  margin-bottom: 32px;
}

.text.is-muted {
  color: var(--gray--muted);
}

.hero {
  background-image: url('../images/band-photo.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
  position: relative;
}

.overlay {
  background-color: #0006;
  position: absolute;
  inset: 0%;
}

.overlay.is-soft {
  background-image: linear-gradient(#00000040, #0000008c);
}

.stack {
  display: flex;
}

.stack.is-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section-coming-soon {
  text-align: center;
  mix-blend-mode: darken;
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/band-photo.jpg');
  background-position: 0 0, 50%;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.beehumana {
  color: #f0e6d2;
  letter-spacing: .03rem;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 4rem;
}

.paragraph-2 {
  color: #d2cbb6;
  margin-top: .5em;
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .h1 {
    font-size: 48px;
  }

  .h2 {
    font-size: 32px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 767px) {
  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 28px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-coming-soon {
    background-image: linear-gradient(#0000, #0000), url('../images/band-photo-mobile.jpg');
    background-position: 0 0, 50% 30%;
    background-size: auto, cover;
  }
}

@media screen and (max-width: 479px) {
  .beehumana {
    font-size: 3.5rem;
  }
}


