body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  background-color: #121212;

  margin: 0;
  color: #e0e0e0;
  background-image: url("images/bg2.jpg");
}

#timer-display {
  font-size: 24px;
  color: #e0e0e0;
  margin: 20px 0;
}

.timer-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* Adjust spacing between buttons as needed */
}

.timer-options .button-74 {
  margin: 0;
}

.container {
  text-align: center;
  background-color: #2c2c2c;
  /* Different color to distinguish from background */
  padding: 30px;
  border-radius: 10px;
  opacity: 1;
  width: 450px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7), 0 6px 6px rgba(0, 0, 0, 0.6),
    0 -2px 4px rgba(255, 255, 255, 0.1) inset;
  /* 3D effect with shadows */
  transform: translateY(-10px);
}

.button-74.selected {
  background-color: #d6dedb;
  /* Highlight color */
  color: #fff;
  /* Text color for selected button */
  border-color: #1e88e5;
  /* Border color for selected button */
}

h1 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #f5f5f5;
}

p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #bdbdbd;
}

input {
  width: 90%;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid #424242;
  border-radius: 5px;
  background-color: #333;
  color: #f5f5f5;
  font-size: 18px;
}

input:focus {
  outline: none;
  border-color: #1e88e5;
}

button {
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #1e88e5;
  color: #fff;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}

button:hover {
  background-color: #1565c0;
  transform: scale(1.05);
}

#result-div {
  margin-top: 30px;
  font-size: 20px;
  color: #e0e0e0;
}
#quote {
  margin: 20px;
}

.correct {
  color: green;
}

.incorrect {
  color: red;
}

/* General Reset */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
