* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(151deg, rgb(202, 240, 248) 0%, rgb(234, 240, 248) 35%, rgb(255, 255, 255) 100%);
  min-height: 100vh;
  display: grid;
  place-content: center;
}
body .message {
  color: #303030;
  background: #ffffff;
  font-family: monospace;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 2px 1px 10px #6c757d;
  display: flex;
  flex-direction: column;
}
body .message p:nth-child(1) {
  margin-top: 40px;
  font-size: 50px;
  font-weight: 100;
}
body .message p:nth-child(2) {
  color: #22577a;
  font-size: 18px;
}
body .message p:nth-child(4) {
  font-size: 12px;
  width: 255px;
  text-align: center;
}
body .message .try {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bolder;
}
body .message form {
  text-align: center;
  gap: 10px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  color: #faa307;
}
body .message form label {
  font-size: 25px;
}
body .message form input {
  align-self: center;
  width: 150px;
  text-align: center;
  color: #252525;
  font-family: monospace;
  font-size: 25px;
  border: none;
  outline: none;
  border-bottom: 2px solid #252525;
}
body .message form input:active {
  border: none;
  outline: none;
}
body .message form p {
  font-size: 20px;
}
body .message .score-label {
  font-size: 20px;
  margin-top: 30px;
  text-align: center;
}
body .message .score-label span {
  color: #faa307;
}
body .message .highscores {
  margin-top: 10px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
body .message .highscores ul:nth-child(2) {
  margin-left: 5px;
}
body .message .highscores ul:nth-child(3) {
  margin-left: 20px;
}
body .message .highscores ul li {
  font-size: 17px;
  list-style: none;
}
body button {
  align-self: center;
  margin-top: 20px;
  border: none;
  color: #22577a;
  background: #ffffff;
  box-shadow: 2px 1px 3px #6c757d;
  height: 30px;
  font-size: 20px;
  border-radius: 7px;
  padding-inline: 40px;
}
body button:active {
  scale: 0.9;
}
body .playing-cont {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px 1px 10px #a8dadc;
}
body .playing-cont .stopwatch {
  cursor: pointer;
  color: #252525;
  display: flex;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 60px;
  font-weight: 100;
  gap: 10px;
  width: 300px;
  height: 300px;
  border: 1px solid #edf6f9;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 5px 5px 10px #edf6f9;
}
body .playing-cont .stopwatch:active {
  scale: 0.9;
}
body .playing-cont .start-stopwatch {
  margin-top: 40px;
  box-shadow: 2px 1px 3px #a8dadc;
}
body .playing-cont .how-to-play {
  width: 300px;
  font-family: monospace;
  margin-top: 50px;
  font-size: 15px;
  text-align: center;
  box-shadow: 2px 1px 10px #edf6f9;
  border-radius: 10px;
  padding: 15px;
  color: #252525;
}
body .current-score {
  color: #252525;
  font-family: monospace;
  display: none;
  flex-direction: column;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 2px 1px 10px #a8dadc;
}
body .current-score .fa-crown {
  margin-top: 20px;
  align-self: center;
  font-size: 60px;
  color: #faa307;
  display: none;
}
body .current-score .fa-face-frown {
  display: none;
  margin-top: 20px;
  align-self: center;
  font-size: 60px;
  color: #f94144;
}
body .current-score .congrats {
  margin-top: 40px;
  font-weight: 100;
  width: 300px;
  text-align: center;
  font-size: 20px;
}
body .current-score .reflex-time-label {
  font-size: 22px;
  text-align: center;
  margin-top: 40px;
  color: #007f5f;
}
body .current-score .current-time {
  text-align: center;
  color: #007f5f;
  font-size: 40px;
}
body .current-score .reset {
  box-shadow: 2px 1px 5px #007f5f;
  color: #007f5f;
}/*# sourceMappingURL=style.css.map */