body {
    background: url("background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0; 
  }/* General Page Styling */
body {
  background: url("background.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

/* Start Screen Styling */
#start-screen {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#start-screen h1 {
  margin-bottom: 10px;
}

#start-screen p, #start-screen ul {
  font-size: 18px;
}

#start-button {
  background: #ffcc00;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

#start-button:hover {
  background: #ffaa00;
}
