body {
  background-color: #2B2B2B; 
  font-family: 'Georgia', serif;
  color: #3B2F2F;
}

#text {
  background-color: #F5EEDC; 
  color: #3B2F2F;
  padding: 10px;
  border: 2px solid #C9A44C;
  border-radius: 5px;
  box-shadow: inset 0 0 8px rgba(100, 75, 43, 0.3);
}

#game {
  max-width: 500px;
  max-height: 800px;
  background-color: #EAD7B7; 
  color: #3B2F2F;
  margin: 30px auto 0px;
  padding: 10px;
  border: 2px solid #C9A44C;
  box-shadow: 0 0 15px rgba(225, 193, 110, 0.4);
  border-radius: 5px;
}

#topContainer {
    display: flex; 
    align-items: center; 
    gap: 20px;
}

#controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

#controls,
#stats {
  border: 1px solid #C9A44C;
  padding: 5px;
  color: #3B2F2F;
  background-color: #F5EEDC;
  box-shadow: inset 0 0 6px rgba(100, 75, 43, 0.3);
}

#stats p {
  margin: 0 0 5px 0;
}

#monsterStats {
  display: none;
  border: 1px solid #B85C38;
  padding: 5px;
  color: #F5EEDC;
  background-color: #3B2F2F;
  box-shadow: inset 0 0 5px rgba(50, 25, 10, 0.5);
}

.stat {
  padding-right: 10px;
}

#audioControls {
  padding-right: 0px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: auto;
}

button {
  cursor: pointer;
  color: #F5EEDC;
  background-color: #B85C38;
  background-image: linear-gradient(#C97E63, #8B3E24);
  border: 3px solid #C9A44C;
  border-radius: 5px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  transition: 0.2s ease;
}

button:hover {
  background-image: linear-gradient(#D9986A, #8B3E24);
  box-shadow: 0 0 8px rgba(225, 193, 110, 0.6);
}

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

#scene {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

#sceneImage {
  max-width: 100%;
  height: 100%;
  border: 2px solid #C9A44C;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(100, 75, 43, 0.4);
  background-color: #F5EEDC;
}