* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #050505;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;

  display: grid;
  place-items: center;

  background-image: url("shutterbackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding:
    max(1.5rem, env(safe-area-inset-top))
    max(clamp(1.125rem, 5vw, 4rem), env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(clamp(1.125rem, 5vw, 4rem), env(safe-area-inset-left));
  overflow-x: clip;
}

.branding {
  width: min(100%, 72rem);
  text-align: center;
  transform: translateY(clamp(0.5rem, 2vh, 1.5rem));
}

.title {
  margin: 0;

  color: #f2ede5;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;

  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.coming-soon {
  margin: clamp(3.7rem, 5.4vw, 6rem) 0 0;

  color: #d8b07c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

@media (max-width: 1500px) {
  .title {
    font-size: 5.45rem;
  }

  .coming-soon {
    margin-top: 5.15rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 1100px) {
  .title {
    font-size: 4.1rem;
  }

  .coming-soon {
    margin-top: 4.15rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 800px) {
  .title {
    font-size: 3.1rem;
  }

  .coming-soon {
    margin-top: 3.55rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 700px) {
  .branding {
    transform: translateY(0.75rem);
  }

  .title {
    font-size: 2.4rem;
  }

  .coming-soon {
    margin-top: 3.25rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .title {
    font-size: 2.28rem;
  }
}

@media (max-width: 380px) {
  .title {
    font-size: 2.05rem;
  }

  .coming-soon {
    margin-top: 2.9rem;
    font-size: 0.68rem;
  }
}
