body {
  font-family: Arial, sans-serif;
  color:white;
  margin: 0;
  padding: 0;
  background-color: black;
  vertical-align:text-top;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height:100vh;
}

#game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width:100%;
  height:100%;
  vertical-align:top;
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

#room-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#room-description {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#direction-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#direction-buttons button {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#direction-buttons button:hover {
  background-color: #45a049;
}

#direction-buttons button:disabled {
  background-color:grey;
}

#room-image {
  height: auto;
  width: 400px;
}

#game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width:600px;
}

.room-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 10px;
}

#direction-buttons {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#direction-buttons button {
  font-size: 16px;
  padding: 5px 5px;
  margin: 5px;
}

.horizontal-buttons {
  display: flex;
  justify-content: center;
}

.horizontal-buttons button {
  margin: 0 5px;
}

.hidden {
  display: none;
}
.footer a {
    color:gold;
}
.footer {
    text-align:center;
}
}
}