@keyframes fadein-ghost {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.7;
  }
}

@keyframes fadeout-ghost {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 0;
  }
}

.instructions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50vh;
  z-index: 999;
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-family: Fakt;
  font-size: 10px;
  pointer-events: none;
  text-align: center;
}

.instructions .inner-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.instructions .content {
  text-align: center;
  margin: 0.25rem 0;
}

.instructions .content-1 {
  display: flex;
  align-items: center
}

.pre-place {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0.7;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  pointer-events: none;
}

.fadein-ghost {
  opacity: 0.7;
  animation-name: fadein-ghost;
  animation-duration: 0.5s;
}

.fadeout-ghost {
  opacity: 0;
  animation-name: fadeout-ghost;
  animation-duration: 0.5s;
}
