html{
  background: #212121;
}

body{
  font-family: 'Source Code Pro', monospace;
  background: #212121;
  color: #52575d;
}

p{
  color: #eeeeee;
  font-family: 'Montserrat', sans-serif;
}

a{
  color: #52575d;
}
.yellow{
  color: #ffd369;
}
.white{
  color: #eeeeee;
}
.correct{
  color: #29bb89;
}
.wrong{
  color: #e84545;
  text-decoration: underline;
}
.mistake{
  color: #e84545;
}
.current{
  color: #eeeeee;
}
.center{
  text-align: center;
}
.if{
  display: inline-flex;
}

.box {
  max-width: 900px;
  padding: 0 30px;
}

#heading{
  align-self: self-start;
  margin-top: 50px;
  font-size: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

h2{
  font-size: 20px !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #ffd369;
}
h3{
  font-size: 18px !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #ffd369;
  padding: 7px 15px 7px 15px;
}

label{
  font-size: 1rem;
  color: #eeeeee;
  font-weight: 500;
}

.limits-box{
  text-align: right;
  margin: 0 35px 0 0 ;
  font-size: 15px;
}

.stats{
  margin: 10px auto 20px auto;
}

.details{
  font-size: 4rem;
}
.stat-block{
  padding: 0 30px;
  min-width: 150px;

}

@media(max-width: 600px){
  .details{
    font-size: 5rem;
  }
  .stat-block{
    min-width: 0;
  }
}

.stat-name{
  font-size: 1rem;
  position: relative;
  top: 20px;
  right: 5px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-display{
  margin: 22px 0 22px 0;
  font-size: 28px;
  text-align: left;
  min-height: 200px;
}

.text-explain{
  margin: 0 0 22px 0;
  font-size: 18px;
  text-align: left;
  min-height: 50px;
}

.text{
  font-size: 19px;
  color: #eeeeee;
  font-weight: 500;
  text-align: left;
}

.form-text{
  font-size: 19px;
  color: #eeeeee;
  font-weight: 500;
  text-align: left;
  padding: 0 15px 0 35px;
}

.form-list{
  font-size: 19px;
  color: #eeeeee;
  font-weight: 500;
  text-align: left;
  padding: 0 15px 0 35px;
  margin: 0 0 0 35px;
}

input[type=radio]{
  accent-color: #ffd369;
}

input[type="checkbox"]{
  accent-color: #ffd369;
  padding: 5px 0 5px 20px;
}

.form-check{
  padding-top: 5px;
}

.form-input{
  margin: 0 0 0 35px;
}

.form-table{
margin: 5px 15px 0 35px }

.form-table th, td{
  color: #eeeeee;
  border: 0.5px solid #ffd369;
  padding: 10px;
}

input:focus, textarea:focus, select:focus, a:focus{
  outline: 0 ;
}
a:focus,a:hover{
  color: #ffd369;
  text-decoration: none;
}

footer{
  padding: 20px;
  font-size: 15px;
}

.flexbox{
  display: flex;
  justify-content: center;
  align-items: center;
}

.button{
  padding: 20px;
  font-weight: bold;
  font-size: 16px;
  color: #eeeeee;
  text-align: center;
}
.restart-button{
  padding: 10px;
}

.next-button{
  padding: 10px;
}

.prev-button{
  padding: 10px;
}

.submit-button{
  padding: 20px;
}

.generate-button{
  padding: 0 15px 0 35px;
  color: #eeeeee;
}
.generate-button:hover{
  color: #ffd369;
  cursor: pointer;
}

.hidden{
  display: none !important;
}

textarea{
  background: #212121;
  border: 2px solid #52575d;
  border-radius: 10px;
  color: #eeeeee;
  padding: 10px;
  font-size: 1.2rem;
  resize: none;
  text-align: center;
  margin-bottom: 15px;
}
.wrong-char{
  background: #e84545;
}

.gif{
  text-align: center;
  margin: 22px 0 22px 0;
}

.code-input{
  width: 40px;
  height: 40px;
  margin: 0 0 22px 0;
  text-align: center;
  border-radius: 8px;
}

.code-input:focus{
  border: 3px solid #ffd369;
}
input:invalid{
  background: #e84545;
}

progress{
  min-width: 900px;
  height: 0.5em;
  color: #29bb89;
  border-radius: 10px;
  border: 0.1em solid #52575d;
  background-color: #212121;
}

progress::-moz-progress-bar { background: #29bb89; }
progress::-webkit-progress-value { background: #29bb89; }
progress { color: #29bb89; }

img{
  max-width: 60%;
}

