:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
}

.splash {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image: url("assets/bg-desktop.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  transform: translateY(4px);
}

.splash__logo,
.splash__coming-soon {
  display: block;
  flex: 0 0 auto;
}

.splash__logo {
  width: 111px;
  height: auto;
}

.splash__coming-soon {
  width: 393px;
  max-width: calc(100vw - 32px);
  height: auto;
}

@media (max-width: 767px) {
  .splash {
    background-image: url("assets/bg-mobile.png");
  }

  .splash__content {
    gap: 23px;
    transform: translateY(2px);
  }

  .splash__logo {
    width: 71px;
  }

  .splash__coming-soon {
    width: 236px;
    max-width: calc(100vw - 32px);
  }
}
