:root {
  --Heading-Purple: #5c33ad;
  --Content-Grey-2: #3d3d3d;
}

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

body {
  margin: 0;
  color: var(--Content-Grey-2);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

p {
  margin: 0 0 1.4em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--Heading-Purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.paragraph--narrow {
  max-width: 782px;
  margin-left: auto;
  margin-right: auto;
}

.page-under-construction {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-under-construction__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.page-under-construction__main section {
  width: 100%;
  padding: 0;
}

.page-under-construction__content {
  font-size: 21px;
  line-height: normal;
}

.page-under-construction__headline {
  font-weight: 600;
}

.page-under-construction__signoff {
  color: var(--Heading-Purple);
  font-weight: 400;
}

@media (max-width: 1023px) {
  @supports not (min-height: 100dvh) {
    .page-under-construction__content {
      transform: translateY(-8vh);
    }
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1924px;
    padding: 0 62px;
  }

  .page-under-construction__content {
    font-size: 28px;
  }
}
