:root {
  --footer-pink: #c92778;
  --overlay: rgba(0, 0, 0, 0.58);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background: #1e1e1e;
}

.coming-soon {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: calc(100vh - 91px);
  min-height: calc(100dvh - 91px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(var(--overlay), var(--overlay)),
    url("hero.png");
  background-position: center;
  background-size: cover;
}

.hero__content {
  width: min(1160px, calc(100% - 40px));
  margin-top: 24px;
  text-align: center;
}

h1 {
  margin: 0 0 31px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3.2rem, 5.15vw, 5.55rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

p {
  margin: 0;
}

.hero__content p {
  font-size: clamp(0.82rem, 0.78vw, 0.92rem);
  line-height: 1.55;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.hero__content p+p {
  margin-top: 13px;
}

.footer {
  position: relative;
  min-height: 91px;
  display: grid;
  place-items: center;
  padding: 18px 56px;
  background: var(--footer-pink);
  text-align: center;
}

.footer p,
.footer a {
  color: var(--white);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1rem, 1vw, 1.15rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 86px);
    min-height: calc(100dvh - 86px);
    background-position: center;
  }

  .hero__content {
    width: min(100% - 32px, 620px);
    margin-top: 0;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .hero__content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .footer {
    min-height: 86px;
    padding: 18px 50px;
  }

  .info-mark {
    left: 18px;
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 104px);
    min-height: calc(100dvh - 104px);
  }

  .hero__content {
    width: min(100% - 28px, 420px);
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }

  .footer {
    min-height: 104px;
    padding: 18px 42px 18px 56px;
  }
}