* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100vh;
  text-align: center;
}

#game-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: cornflowerblue;
  color: white;
  overflow: hidden;
}

#room-description {
  font-size: 150%;
  font-weight: 500;
  max-width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.exit-button {
  font-size: large;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  text-align: center;
  border: none;
}

.button-wide {
  width: 60%;
  height: 20%;
}

.button-tall {
  width: 20%;
  height: 70%;
}

#north-exit-button {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}

#south-exit-button {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
}

#west-exit-button {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}

#east-exit-button {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-100%, -50%);
}

@media (max-width: 520px) {
  body {
    transform: rotate(90deg);
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  #game-container {
    width: 100vh;
    height: 100vw;
  }
}
