body {
  background-color: #333;
  color: #fff;
  font-family: Helvetica, arial, sans-serif;
  font-size: 18px;
}

h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 3em;
  margin: 0.5em 0;
}

h2 {
  font-size: 1.7em;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  border-radius: 50px;
  background-color: #FC284A;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
  padding: 20px 40px;
  border: none;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  display: inline-block;
  margin: 0 auto;
  cursor: pointer;
}

button:hover {
  background-color: #ad0d26;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

button.buSecondary {
  background-color: #333;
  border: 5px solid #FC284A;
}

.container {
  width: 350px;
  margin: 0 auto;
  text-align: center;
}

.spellingUnitList li {
  list-style: none;
  margin: 0 0 1em 0;
}



.buContainer {
  display: flex;
  margin-bottom: 50px;
}

#scoreboard {
  margin: 0 auto 2em auto;
  padding: 0.5em 1em;
  overflow: hidden;
  color: #CCC;
  background-color: #444;
  border-radius: 10px;
  border: 5px solid #666;
  box-shadow: inset 5px 5px 10px 0 rgb(0 0 0 / 30%);
}

#container-wrong {
  float: left;
  text-align: left;
  height: 1.7em;
  line-height: 1.7em;
}

#container-correct {
  text-align: right;
  float: right;
  height: 1.7em;
  line-height: 1.7em;
}

#number-wrong,
#number-right {
  color: #fff;
  font-weight: bold;
}

#remaining-container {
  position: absolute;
  top: 80px;
  left: calc(50% - 40px);
  height: 40px;
  display: block;
  width: 40px;
  padding: 15px;
  margin: auto;
  border: 5px solid #FF284A;
  text-align: center;
  background: #fff;
  color: #333;
  border-radius: 50%;
  box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 30%);
  z-index: 1000;
}

#remaining-text {
  font-size: 0.75em;
  font-weight: normal;
  color: #666;
  text-transform: uppercase;
}

#remaining-tally {
  font-size: 1.7em;
  font-weight: bold;
  color: #333;
  line-height: 1em;
}

#wordDisplay {
  padding: 0.75em;
  margin: auto auto 1.5em auto;
  color: #333;
  font-size: 3em;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  border: 5px solid #666;
}

#quizScreen,
#resultsScreen,
#menuContainer {
	display: none;
}