body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1.2em;
  margin: 0;
  line-height: 1.65em;
  background: #B20940 !important;
  color: #fff;
  font-weight: 300;
}

h1 {
  text-align: center;
  margin: 20px;
  font-size: 5vw;
}

h4 {
  margin: 0 3px;
  padding: 0;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.container#play-area {
  position: fixed;
  justify-content: space-evenly;
  width: 100%;
  height: 85%;
  padding: 0;
  margin: 0;
  align-items: center;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  /* height: 15%; */
  min-height: 110px;
  width: 100%;
  bottom: 0;
  background: #8a0632;
}

.button {
  background: #0b7fba;
  border: 0;
  color: #fff;
  font-size: 20px;
  padding: 0.3em;
  cursor: pointer;
  display: block;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
}

.random-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: #0b7fba; 
  border-radius: 0px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-width: 6px 10px;
  border-style:solid;
  background-color: #0b7fba;
  cursor: pointer;
  user-select: none;
}

.random-adj {
  width: 1em;
  height: 50%;
  text-align: center;
  text-justify: center;
  padding: 0 2px;
  margin: 0;
  line-height: 1em;
  user-select: none;
  cursor: pointer;
}

#random-adj-container {
  flex-direction: column; 
  background: #095880;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

#random-quantity {
  text-align: center;
  padding: 0 5px;
  border: 0px;
  border-radius: 3px;
  background: #0a6b9b;
  color: white;
  font-size: 1em;
  font-family: Verdana, Geneva, sans-serif;
  min-width: 25px;
}


#status {
  position:absolute;
  font-family: sans-serif;
  top: 0;
  right: 0;
  margin: 10px;
  padding: 0 8px;
  border-radius: 5px;
  background-color: rgb(59, 59, 59);
  z-index: 2;
}

#word-set-control {
  width: 20vw;
  min-width: 380px;
}

#word-input {
  display: block;
  width: 70%;
  height: 35px;
  font-size: 30px;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  color: black;
}

#word-display {
  line-height: 1.2em;
}

#instructions {
  margin: 10px;
}





/* The checkboxContainer */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 2px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.options h3 {
  font-size: 22px;
  margin: 0;
  margin-bottom: 3px;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#optionsDiv {
  display: flex; 
  flex-direction: column; 
  width: 20%;
  align-items: center;
}

#leaderboard {
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 25px;
  border-radius: 5px;
}

#leaderboard h2{
  font-size: 1.5vw;
  text-align: center;
}

#leaderboard p {
  font-size: 1vw;
  line-height: 1.6em;
}

#wrong-letters-display {
  font-size: 3.2vw; 
  color: rgb(0, 0, 0); 
  word-wrap: break-word; 
  max-width: 50vw; 
  text-align: center; 
  line-height: 1em;
}

#wrong-letters-display s{
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#wrong-letters-display s::before {
  content: '';
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  top: 0.28em;
  bottom: 0.38em;
  background: linear-gradient(to left top, transparent 45.5%, currentColor 47.5%, currentColor 52.5%, transparent 54.5%);
  pointer-events: none;
  color: rgb(255, 0, 0);
  height: 0.5em;
}