* {
  margin: 0;
  color: white;
}

body {
  background-color: rgb(37, 37, 37);
}

li {
  font-size: 30px;
}

li:hover {
  cursor: pointer;
  font-size: 34px;
}

.correct {
  color: green;
}

.wrong {
  color: red;
}

.result {
  font-size: 20px
}

input {
  background-color: grey;
  color: white;
  font-size: 24px;
}

button {
  margin-top: 10px;
  background-color: grey;
  color: white;
  font-size: 24px;
}

::placeholder {
  color: white;
}

/* ::-ms-input-placeholder {
  color: white;
} */