:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
}

body {
  font-family: system-ui, sans-serif;
}

body.is-desktop-gate {
  height: 100dvh;
  overflow: hidden;
}

#app {
  background: #000;
}

.desktop-gate {
  width: 100vw;
  height: 100dvh;
  padding: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.desktop-gate__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.desktop-gate__title {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.desktop-gate__qr {
  width: 196px;
  height: auto;
  display: block;
}

body.is-mobile-home {
  min-height: 100dvh;
  background: #fff;
}

body.is-mobile-home #app {
  width: 100%;
  min-height: 100dvh;
  background: #fff;
}

.mobile-home__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
