body {
  text-align: center;
  font-family: 'Arial', sans-serif;
  background-size: cover;
  color: #ffffff;
}

.quiz-box {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  margin: 50px auto;
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.quiz-box h1, p {
  color: white;
}

button {
  margin: 10px auto;
  padding: 10px;
  background:red; /* Medium Slate Blue */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
}

button:hover {
  background: orangered; /* Dark Slate Blue */
  color: white;
}
body{
  background-color:orange ;
}