@media (max-width: 768px) {
  html,
  body {
    transform: rotate(90deg);
    transform-origin: top left;
    width: 100vh;
    height: 100vw;
    overflow-x: hidden;
  }
}

body {
  margin: 0;
}

.game-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#canvas-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#autopilot-container {
  display: flex;
  background: var(--text-light);
  color: #aaa;
  padding: 0.5rem;
  opacity: 0;
  justify-content: flex-end;
}

#autopilot-container > input {
  transform: scale(1.3);
  margin-left: 0.5rem;
}
