.correct {
  color: hsl(140, 63%, 57%);
}

.incorrect {
  color: hsl(354, 63%, 57%);
  text-decoration: underline;
}

.current {
  color: hsl(240, 1%, 59%);
  background-color: hsl(0, 1%, 32%);
}

.feature {
  color: hsl(240, 1%, 59%);
}

#main {
  position: relative;
}

#accuracy,
#time {
  color: hsl(0, 0%, 100%);
}

#accuracy.active {
  color: hsl(354, 63%, 57%);
}

#time.active {
  color: hsl(49, 85%, 70%);
}

#typing-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 90px;
  padding-bottom: 10px;
}
#typing-info__list {
  display: flex;
  color: hsl(240, 1%, 59%);
  list-style-type: none;
  padding: 0;
}

.typing-info__item {
  display: flex;
  align-items: center;
  padding: 0 20px 0;
  border-right: 1px solid hsl(0, 0%, 15%);
}
.typing-info__item:first-child {
  padding-left: 0;
}
.typing-info__item:last-child {
  border-right: none;
}
.typing-info__item span {
  margin-left: 10px;
  font: bold 24px "Sora", serif;
  color: hsl(0, 0%, 100%);
}

#level-mode-info {
  display: flex;
}

.select-replacement {
  display: none;
}

#level-info__list,
#mode-info__list {
  display: flex;
  color: hsl(240, 1%, 59%);
  list-style-type: none;
  padding: 0;
}

#level-info__list {
  gap: 7px;
  padding-right: 20px;
  border-right: 1px solid hsl(0, 0%, 15%);
}

#mode-info__list {
  gap: 7px;
  padding-left: 20px;
}

.level-info__item a,
.mode-info__item a {
  padding: 10px;
  border: 1px solid hsl(240, 1%, 59%);
  border-radius: 10px;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}
.level-info__item a:hover,
.mode-info__item a:hover {
  color: hsl(210, 100%, 65%);
  border-color: hsl(210, 100%, 65%);
}
.level-info__item a:focus,
.mode-info__item a:focus {
  outline: 2px solid hsl(210, 100%, 65%);
  outline-offset: 2px;
}
.level-info__item a.active,
.mode-info__item a.active {
  color: hsl(210, 100%, 65%);
  border-color: hsl(210, 100%, 65%);
}

#mobile-input {
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 1px;
  pointer-events: none;
  z-index: -1;
}

#content {
  margin: 0 90px;
  color: hsl(240, 1%, 59%);
  font-size: 2rem;
  filter: blur(8px);
  border-top: 1px solid hsl(0, 0%, 15%);
  border-bottom: 1px solid hsl(0, 0%, 15%);
  padding-bottom: 90px;
}

#restart-btn {
  position: absolute;
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: 15px 15px;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(0, 0%, 15%);
  color: hsl(0, 0%, 100%);
  border: none;
  border-radius: 10px;
  font: bold 16px "Sora", serif;
  visibility: hidden;
  cursor: pointer;
}

#start-info {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
#start-info__button {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  padding: 10px 15px;
  border-radius: 10px;
  background-color: hsl(214, 100%, 55%);
  transition: transform 0.3s ease-in-out;
}
#start-info__button:hover {
  background-color: hsl(210, 62%, 54%);
  transform: scale(1.02);
}
#start-info__label {
  color: hsl(0, 0%, 100%);
}

@media screen and (min-width: 320px) {
  body {
    overflow: scroll;
  }
  #header {
    margin-bottom: 0;
  }
  #main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #typing-info {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 15px;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid hsl(0, 0%, 15%);
  }
  #typing-info__list {
    margin-top: 0;
  }
  .typing-info__item {
    flex-direction: column;
  }
  .typing-info__item span {
    margin: 0;
  }
  .typing-info__item:last-child {
    padding-right: 0;
  }
  #level-mode-info {
    gap: 10px;
  }
  #level-info__list,
  #mode-info__list {
    display: none;
  }
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    min-width: 135px;
    visibility: hidden;
    background-color: hsl(0, 0%, 15%);
    border-radius: 10px;
    z-index: 1;
  }
  .dropdown-menu.active {
    visibility: visible;
  }
  .dropdown-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 8.4375rem;
    padding: 5px 0;
    background-color: hsl(0, 0%, 7%);
    color: hsl(0, 0%, 100%);
    border-radius: 7px;
    border: 1px solid hsl(240, 1%, 59%);
    font-family: "Sora", serif;
  }
  .dropdown-text {
    padding-left: 5px;
    color: hsl(0, 0%, 100%);
    font-size: 14px;
  }
  .dropdown-item {
    padding: 10px 0 10px 7px;
    border-bottom: 1px solid hsl(0, 0%, 23%);
  }
  .dropdown-item label {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-item input[type=radio] {
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 2px solid hsl(0, 0%, 100%);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-top: 0;
    margin-bottom: 1px;
  }
  .dropdown-item input[type=radio]:checked {
    border-color: hsl(210, 62%, 54%);
    background: hsl(210, 62%, 54%);
  }
  .dropdown-item input[type=radio]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: hsl(0, 0%, 7%);
    border-radius: 50%;
  }
  .dropdown-arrow {
    width: 10px;
  }
  #content {
    margin: 0 20px 30px;
    padding: 30px 0;
  }
  #restart-btn {
    position: relative;
    left: 0;
    transform: none;
    margin: 0 0 50px 0;
  }
  #start-info {
    width: 100%;
  }
  #start-info__label {
    font-size: 1rem;
  }
}
@media screen and (min-width: 730px) {
  #typing-info {
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    padding-bottom: 20px;
    margin: 30px 0 20px;
    box-sizing: border-box;
  }
  #typing-info__list {
    margin: 0;
  }
}
@media screen and (min-width: 850px) {
  #header {
    margin: 30px 50px 0;
  }
  #typing-info {
    margin-bottom: 0;
    padding: 0 0 20px 0;
    justify-content: space-between;
    width: 88%;
  }
  .typing-info__item {
    flex-direction: row;
    gap: 10px;
    font-size: 10px;
  }
  .typing-info__item span {
    font-size: 10px;
  }
  .dropdown {
    display: none;
  }
  #level-mode-info {
    font-size: 10px;
    gap: 0;
  }
  #level-info__list,
  #mode-info__list {
    display: flex;
  }
  #content {
    margin: 0 50px 30px;
    width: 88%;
  }
}
@media screen and (min-width: 1230px) {
  #header {
    margin: 30px 100px 0;
  }
  #typing-info {
    width: 86%;
    margin: 60px 0 0;
    padding: 0 0 20px;
  }
  .typing-info__item {
    font-size: 16px;
  }
  .typing-info__item span {
    font-size: 1.5rem;
  }
  #level-mode-info {
    font-size: 16px;
  }
  #content {
    width: 86%;
    margin: 0 100px 30px;
  }
}/*# sourceMappingURL=index.css.map */