* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #929090;
  color: #fff;
  font-family: sans-serif;
}

.container {
  width: 35%;
  margin: 50px auto;
  box-shadow: 1px 1px 10px 10px #3f3e3e;
  border-radius: 10px;
  background-color: #5e5e5e;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 10px 10px;
}

.questions p {
  font-size: 18px;
}

.main-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.options button {
  width: 100%;
  padding: 10px;
  background-color: #ccc;
  border-radius: 5px;
  border: none;
}

.options button:hover {
  background-color: #aaa;
  cursor: pointer;
}

.next-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.next-btn button {
  width: 40%;
  padding: 10px;
  background-color: #4CAF50;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.next-btn button:hover {
  background-color: #45a049;
}


/* CSS for modal styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

#restartButton {
  margin-top: 20px;
  padding: 10px 20px;
}



