:root {
  --noir: #1c0a10;
  --mist: whitesmoke;
  --coral: #ef5350;
  --wine: #7a1e2d;
}

body {
  color: var(--noir);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.prelaunch-page {
  width: 100%;
  min-height: 100svh;
  color: var(--mist);
  background-color: #6f1826;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 80px;
  display: flex;
}

.logo-app-icon {
  width: 146px;
  height: 146px;
}

.label-pl {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border: 1px solid var(--coral);
  min-height: 24px;
  color: var(--coral);
  text-transform: uppercase;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
  display: flex;
}

.heading-pl-jumbo {
  margin-top: 16px;
  margin-bottom: 48px;
  font-family: Platypi, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 120%;
}

.pl-jumbo-highlight {
  border-bottom: 3px solid var(--coral);
  color: var(--coral);
  font-weight: 700;
}

.container-pl {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  display: flex;
}

.text-block {
  max-width: 480px;
}

.body-pl {
  background-color: #6f1826;
}

@media screen and (max-width: 767px) {
  .prelaunch-page {
    padding: 40px;
  }

  .logo-app-icon {
    width: 96px;
    height: 96px;
  }

  .heading-pl-jumbo {
    font-size: 48px;
  }

  .container-pl {
    max-width: 520px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  .prelaunch-page {
    padding: 24px;
  }

  .label-pl {
    font-size: 10px;
  }

  .heading-pl-jumbo {
    font-size: 40px;
    line-height: 110%;
  }
}


