@media (min-width: 853px) and (min-height: 560px) and (orientation: landscape) {
  .playing-area-wrapper {
    flex-direction: column;
  }

  .headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .start-screen-outer-wrapper {
    height: calc(100% - 68px);
  }

  .textarea {
    width: 700px;
  }

  .story-text {
    font-size: 1.2rem;
  }
}

@media (min-width: 853px) and (height < 480px) and (orientation: landscape) {
  .playing-area-wrapper {
    max-height: 90vh;
    max-height: 90dvh;
  }
}

@media (min-width: 853px) and (height > 480px) and (orientation: landscape) {
  .playing-area-wrapper {
    width: 100%;
    max-width: 853px;
    height: 100%;
    max-height: 560px;
  }

  canvas {
    width: 853px;
  }

  .mobile-button-wrapper {
    display: none;
  }
}

@media (max-width: 853px) and (orientation: portrait) {
  .page {
    position: relative;
  }

  .playing-area-wrapper {
    display: none;
  }

  canvas {
    width: 100%;
    height: calc(100vw * 480 / 853);
  }
  .message {
    width: 100%;
    padding: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
    line-height: 1.3;
    font-family: 'Salsa';
    font-size: 24px;
    color: var(--accent-color-white);
  }
}
