@font-face {
  font-family: 'Rum Raisin';
  src: url('fonts/RumRaisin-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  height: 100vh;
  background: #020201 url('img/bg.webp') center / cover no-repeat;
  font-family: "Rum Raisin", sans-serif;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page {
  position: relative;
  padding: 16px;
  visibility: hidden;
}

html[data-push-mode="web"] .page {
  visibility: visible;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 266px;
  height: 104px;
  background: url('img/logo.webp') center / contain no-repeat;
}

.instruction {
  max-width: 526px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}

.arrow {
  position: absolute;
  height: 300px;
  aspect-ratio: 516 / 770;
  left: -200px;
  top: -155px;
  background: url('img/arrow.webp') center / contain no-repeat;
}

@media (max-width: 992px) {
  .arrow {
    display: none;
  }
}