html {
  min-height: 100%;
}

body {
  background-color: bisque;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f241c;
}

.fix {
  display: block;
  width: min(104vw, 820px);
  max-height: 58vh;
  margin-top: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
  
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: clamp(22px, 6vw, 48px) 18px 0;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}

.message {
  max-width: 720px;
  margin: clamp(14px, 5vh, 52px) auto 0;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: clamp(10px, 2.8vw, 14px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 10vw, 64px);
  line-height: 1.02;
}

.message p:last-child {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: clamp(16px, 4.2vw, 22px);
  line-height: 1.35;
}

@media (max-width: 520px) {
  .container {
    padding-inline: 14px;
  }

  .message {
    width: min(100%, 390px);
    margin-top: clamp(18px, 5vh, 44px);
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(32px, 8.3vw, 38px);
    line-height: 1.06;
  }

  .message p:last-child {
    max-width: 360px;
    font-size: clamp(17px, 4vw, 19px);
    line-height: 1.42;
  }

  .fix {
    width: 128vw;
    max-height: 52vh;
  }
}

@media (max-height: 620px) {
  .container {
    padding-top: 16px;
  }

  .message p:last-child {
    font-size: 15px;
  }

  .fix {
    max-height: 46vh;
  }
}
