/* General body styling */
body {
    /* Using the crypt background image */
    background: url('../img/crypt.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff; /* White text color for readability */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
  }
  
  /* Overlay container for game content */
  .overlay {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
  }
  
  /* Section title and number styling */
  #section-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffb100;
  }
  
  #section-title {
    font-size: 2rem;
    margin-top: 1rem;
    color: #ffcc00;
  }
  
  /* Text styling for narrative */
  #section-text {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.5;
    text-align: left;
    padding: 0.5rem;
  }
  
  /* Buttons for choices */
  #choices button {
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    font-size: 1.1rem;
    background-color: #333;
    border: 2px solid #444;
    color: #fff;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  /* Hover effect for choice buttons */
  #choices button:hover {
    background-color: #ffcc00;
    border-color: #ffb100;
    color: #333;
  }
  
  /* Styles for the start button */
  #start-button {
    display: block;
    margin: 0 auto;
  }
  