*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  min-height: 100dvh;
  font-size: 16px;

  @media (max-width: 375px) {
    font-size: calc(100vw / 23.4375);
  }
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  overflow-x: hidden;
}

.page {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14rem 0.75rem 0 0.75rem;
}

.page__illustration {
  display: block;
  width: 100%;
  max-width: 23.5rem;
  height: auto;
}

.page__content {
  display: flex;
  width: 100%;
  max-width: 21.9375rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0;
  padding: 0;
  text-align: center;
}

.page__content-title {
  margin: 0;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.8);
}

.page__content-body {
  margin: 0;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: rgba(0, 0, 0, 0.6);
}

.page__content-brand {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.page__content-time {
  margin: 0.5rem 0 0 0;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
}
