html,
body {
  min-height: 100vh;
  margin: 0;
}

body {
  font-family: "Gabarito", sans-serif;
  text-shadow: none;
  box-shadow: none;
  font-size: 1.125rem;
  line-height: 1.6;
  background: url("../images/white_red_noise.webp") center center / cover no-repeat;
}

.cover-container {
  max-width: 52em;
}

.top-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 360px;
  width: 100%;
  height: auto;
}

h1.intro-line {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02rem;
  font-weight: 900;
}

.coming-soon {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.4;
  color: #ef262f;
}

.contact-details {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.contact-heading {
  font-size: 1.25em;
}

.footer-links {
  font-size: 1.05rem;
}

.contact-details a {
  color: #ef262f;
  text-decoration: underline;
}

.contact-details a:hover {
  color: #ef262f;
  text-decoration: underline;
}

.footer-links a {
  color: #000;
  text-decoration: underline;
}

.footer-links a:hover {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  body {
    font-size: 1rem;
  }

  .logo {
    max-width: 220px;
  }

  h1.intro-line {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .coming-soon {
    font-size: 1.2rem;
  }

  .contact-details {
    font-size: 1rem;
  }
}