*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
:root {
  --100vh: 100vh;
  --bs-primary: #3479a9;
  --bs-primary-darker: #143d5c;
  --bs-secondary: #ecd0d6;
  --bs-secondary-darker: #c98c99;
  --ease-in-out: 0.3s ease-in-out;
  --fw-medium: 500;
  --fw-bold: 700;
}
html {
  font-size: 16px;
}
body {
  font-family: "Spectral", serif;
  color: var(--bs-primary-darker);
  font-weight: var(--fw-medium);
  font-size: .85rem;
  text-transform: uppercase;
  background-image: url("/assets/img/comingsoon-bg.webp");
  background-size: cover;
  background-position: center;
}
body *:not(i) {
  letter-spacing: 0.1em;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
h1 {
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 2rem;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-in-out);
}
a:hover {
  color: var(--bs-primary);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* - coming soon - */
.comingsoon-wrapper .flex-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .5rem;
}
.comingsoon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 2rem;
  min-height: var(--100vh);
}
.comingsoon-wrapper::after {
  content: "";
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: var(--bs-secondary);
}
.comingsoon-wrapper > * {
  position: relative;
  z-index: 2;
}
.comingsoon-wrapper .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex: 1 1 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.comingsoon-wrapper .info .h2 {
  color: var(--bs-primary);
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
}
.poweredby-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: var(--fw-bold);
  font-size: .625rem;
  color: #fff;
}

@media (max-width:767.98px) {
  .comingsoon-wrapper {
    padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
  }
  .footer-logo {
    width: 100px;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
  .comingsoon-wrapper .info .h2 {
    font-size: 2rem;
  }
  h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 4.5rem;
  }
  .comingsoon-wrapper .info {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 5rem;
  }
}
