:root {
  --white: white;
  --black: black;
}

.coming-soon {
  font-family: Albra Display, sans-serif;
  font-size: 5.7rem;
  font-weight: 300;
  line-height: 1;
}

.section {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100dvh;
  display: flex;
  position: relative;
}

.section.display-flex.center {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-medium.align-center.max-width {
  font-family: Publicsans, sans-serif;
  font-weight: 300;
}

.brand-image {
  width: 16.31rem;
}

.brand-image.small {
  width: 6rem;
  margin-top: -91px;
}

.paragraph {
  font-family: Publicsans, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .section {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .section.display-flex.center {
    flex-flow: column wrap-reverse;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-image {
    width: 10rem;
    height: auto;
  }

  .paragraph {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .coming-soon {
    font-size: 3.1rem;
  }

  .section {
    min-height: 100vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section.display-flex.center {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
  }

  .text-weight-medium.align-center.max-width {
    text-align: center;
  }

  .brand-image.small {
    width: 4.3rem;
  }

  .paragraph {
    text-align: center;
  }
}


@font-face {
  font-family: 'Albra Display';
  src: url('../fonts/Albra-Display-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Albra Display';
  src: url('../fonts/Albra-Display-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Publicsans';
  src: url('../fonts/PublicSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}