* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #121212;
  color: #e0e0e0;
}
.start-screen,
.score-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #1f1f1f;
  color: #e0e0e0;
}
#start-button,
#restart {
  font-size: 1.3em;
  padding: 0.5em 1.8em;
  border-radius: 0.2em;
}
#restart {
  margin-top: 0.9em;
}
#display-container {
  background-color: #1e1e1e;
  padding: 1.1em 0.8em;
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 0.1em;
  color: #e0e0e0;
}
.header {
  margin-bottom: 1.8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.6em;
  border-bottom: 0.1em solid #424242;
}
.timer-div {
  background-color: #424242;
  width: 7.5em;
  border-radius: 1.8em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 1.8em;
}
.question {
  margin-bottom: 1.25em;
  font-weight: 600;
}
.option-div {
  font-size: 0.9em;
  width: 100%;
  padding: 1em;
  margin: 0.3em 0;
  text-align: left;
  outline: none;
  background: #2c2c2c;
  border: 1px solid #424242;
  border-radius: 0.3em;
  color: #e0e0e0;
}
.option-div:disabled {
  color: #9e9e9e;
  cursor: not-allowed;
}
#next-button {
  font-size: 1em;
  margin-top: 1.5em;
  background-color: #0a69ed;
  color: #ffffff;
  padding: 0.7em 1.8em;
  border-radius: 0.3em;
  float: left;
}
#back-button {
  font-size: 1em;
  margin-top: 1.5em;
  background-color: #0a69ed;
  color: #ffffff;
  padding: 0.7em 1.8em;
  border-radius: 0.3em;
  float: right;
}
.hide {
  display: none;
}
.incorrect {
  background-color: #9f3a38;
  color: #f44336;
  border-color: #f44336;
}
.correct {
  background-color: #558b2f;
  color: #aed581;
  border-color: #aed581;
}
#user-score {
  font-size: 1.5em;
  color: #ffffff;
}
.option-div.selected::after {
  content: 'Selected'; 
  color: #4CAF50; 
  font-size: 1.2em;
  float: right;
}