html, body {
  margin: 0;
  min-height: 100%;
  color: rgb(223, 223, 223);
  font-family: palatino, serif;
  background: radial-gradient(
     circle at top,
     #150000 0%,
     #080000 25%,
     #100000 50%,
     #020000 75%,
     #000000 100%
    );
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

#game {
  transition: opacity 1s ease;
  opacity: 1;
  width: 75%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

#box-narasi {
  width: 100%;
  max-width: 500px;
  min-height: 20px;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid rgb(162, 162, 162);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  transition: opacity 1s ease;
  opacity: 1;
}

#narasi {
  white-space: pre-line;
  line-height: 1.8;
  font-size: 22px;
}

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

button {
  width: 100%;
  max-width: 200px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
}

#header {
  margin-bottom: 10px;
  font-size: 12px;
  opacity: 0.5;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 5px;
}

.continue-button {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.4;
  margin-top: 30px;
}

.continue-button:hover {
  opacity: 1;
}