#orientation {
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  opacity: 0.9;
  background: #000;

  width: 100%;
  height: 100%;
  height: -webkit-fill-available;

  transition: 300ms ease opacity;
}

#orientation > .material-symbols-outlined {
  transform: scale(3);
}

@media screen and (orientation:landscape) {
  #orientation {
    opacity: 0;
    pointer-events: none;
  }
}