body {
  font-family: "Arial", sans-serif;
  background-color: #f4f0e8;
  color: #333;
  line-height: 1.6;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

#game-wrapper {
  background-color: #e8e0d4;
  border: 2px solid #b09b71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-family: "Georgia", serif;
  color: #6a5030;
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

main {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
}

#story {
  font-size: 1.1em;
  margin-bottom: 20px;
}

#choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  background-color: #b09b71;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
  background-color: #907d5e;
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.restart-button {
  background-color: #8B4513;
  color: white;
  font-weight: bold;
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px dashed #b09b71;
  font-family: "Georgia", serif;
}

.creator-info {
  color: #6a5030;
  margin-top: 5px;
  font-size: 0.9em;
}

.creator-info a {
  color: #b09b71;
  text-decoration: none;
}

.creator-info a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  #game-wrapper {
    padding: 10px;
  }

  main {
    padding: 10px;
  }
}
