html {
  background: #212121;
}

body {
  font-family: "Source Code Pro", monospace;
  background: #212121;
  color: #52575d;
  max-height: 100vh;
  max-width: 100vw;
  min-height: 100vh;
  min-width: 100vw;
  /* overflow-x: hidden; */
}

a {
  color: #52575d;
}
.yellow {
  color: #ffd369;
}
.correct {
  color: #29bb89;
}
.wrong {
  color: #e84545;
  /* text-decoration: underline; */
}
.current {
  color: #eeeeee;
}
.center {
  text-align: center;
}
.if {
  display: inline-flex;
}

.box {
  max-width: 900px;
  padding: 0 30px;
}
.head {
  display: flex;
  align-items: center;
  /* cursor: pointer; */
}

.fa-cog{
  font-size: 1.2rem;
  animation: hithere 2s ease infinite;

}

@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes gelatine {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }
}

.fa-info-circle {
  cursor: pointer;
  animation: bounce 2s ease 5;
 
}

@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}

.fa-info-circle::after {
  content: "inspired from Monekeytype";
  opacity: 0;
  border: 1px solid black;
  padding: 5px 8px;
  margin-left: 10px;
  border-radius: 10px;
  transition: 1s linear;
}

.fa-info-circle:hover::after {
  opacity: 1;
}

.try {
  display: none;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  background-color: #212121;
}
#heading {
  align-self: left;
  margin-top: 50px;
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.limits-box {
  text-align: right;
  margin: 0 35px 0 0;
  font-size: 15px;
}

.stats {
  /* background-color: red; */
  margin: 10px auto 20px auto;
}

.details {
  font-size: 6rem;
}
.stat-block {
  padding: 0 30px;
  min-width: 250px;
}

@media (max-width: 629px) {
  .details {
    font-size: 5rem;
  }
  .stat-block {
    min-width: 0;
  }
}

@media only screen and (max-width: 629px) {
  .try {
    display: flex;
    cursor: none;
    align-items: center;
    justify-content: center;
  }
}

.stat-name {
  font-size: 1rem;
  position: relative;
  top: 45px;
  right: 5px;
}

.text-display {
  margin: 0;
  font-size: 21px;
  line-height: 33px;
  text-align: center;
  min-height: 99px;
  max-height: 99px;
  overflow: hidden;
  /* background-color: red; */
}
#textData {
  transition: transform 0.00001s ease 0s;
}

input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 0;
}
a:focus,
a:hover {
  /* color: #ffd369; */
  color: #b4b4b4;
  text-decoration: none;
}

footer {
  padding: 20px;
  font-size: 15px;
}

.restart-button {
  padding: 10px;
}
.container-fluid {
  position: relative;
}
.input-area.center {
  position: absolute;
  top: 30%;
  opacity: 0;
  width: 100%;
  height: 50%;
  z-index: 1000;
  /* background-color: red; */
}

textarea {
  background: #212121;
  border: solid, #52575d;
  border-width: 2px;
  border-radius: 10px;
  color: #eeeeee;
  padding: 10px;
  font-size: 1.2rem;
  resize: none;
  text-align: center;
  margin-bottom: 15px;
}
