@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  height: 100vh;
  background: #161C24;
  font-family: "Nunito", sans-serif;
  color: #fff;

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

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

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 500px;
  text-align: center;
}

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

.instruction {
  font-size: 18px;
  line-height: 28px;
}

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

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