:root {
  --clr-orange: #ed7d31;
  --clr-blue: #2f5597;
}

:where(*) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'sackers_gothic_std_medium', Arial, Helvetica, sans-serif;
}

:where(h2) {
  font-family: 'sackers_gothic_std_heavy';
}

:where(h5) {
  font-family: 'sackers_gothic_std_light';
  font-weight: 100;
}

:where(.font-orange) {
  color: var(--clr-orange);
}

:where(.font-blue) {
  color: var(--clr-blue);
}

html {
  font-size: 1vw;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  user-select: none;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  right: 50%;
  background: linear-gradient(135deg, #082743, #184f80);
  z-index: -99;
}

body::after {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%;
  background: linear-gradient(135deg, #722c00, #d35704);
  z-index: -99;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}

.main-container {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  color: white;
}

.logo-container {
  position: relative;
  width: 35vw;
}

.logo-container::after {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -3vh;
  height: 1px;
  width: 5vw;
  background-color: hsl(0, 0%, 80%);
}

.desc {
  text-align: center;
  margin-top: 7vh;
}

.coming-soon {
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 25%;
  color: white;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
}

@media screen and (max-width: 30em) and (orientation: portrait) {

  html {
    font-size: min(2.2vw, 100%);
  }

  body::before {
    inset: 0;
    bottom: 50%;
  }

  body::after {
    inset: 0;
    top: 50%;
  }

  .wrapper {
    grid-template-columns: auto;
    grid-template-rows: 50% 50%;
    padding: 5vw;
    width: 100%;
  }

  .content {
    width: 100%;
    justify-self: center;
  }

  .logo-container {
    width: 80vw;
  }

  .logo-container::after {
    width: 20vw;
  }

  .desc {
    margin-top: 9vh;
    font-size: 1.5rem;
  }

  .coming-soon {
    bottom: 50%;
    left: 0;
    translate: 0% 50%;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 2.3rem;
    letter-spacing: 0.5rem;
  }
}