body {
  margin: 0;
  background: #0a0a0a;
  color: #eaeaea;
  font-family: Times;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-container {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  width: 95%;
  height: 90vh;
  align-items: center;
}
  
/* Scene */
#scene-container {
  position: relative;
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

#scene-image {
  max-width: 100%;
  max-height: 100%;
  background-size: cover;
  border: 1px solid #333;
}

#options {
justify-content: space-between;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.option-btn {
  flex: 1;
  min-width: 100px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  color: #faf3dd;
  border: 1px solid #faf3dd;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s;
  font-family: Times;
}

.option-btn:hover {
  background: rgba(83, 35, 35);
}

/* Dialogue */
#dialogue-panel {
  flex: 1;
  max-height: 70vh;   
  height: 70vh;
  font-size: 20px;
  text-align: center;
  color: #faf3dd;
}


#dialogue-panel {
  flex: 1;
  height: 100%;
  align-items: center;
  
}







