* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Nerko One', cursive;
}
body {
  background-color: #66d7d1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.title {
  font-size: 75px;
  padding-bottom: 15px;
}
@media all and (min-width: 320px) {
  .title {
    font-size: 50px;
    text-align: center;
  }
}
.subtitle {
  font-size: 30px;
}
@media all and (min-width: 320px) {
  .subtitle {
    font-size: 20px;
    text-align: center;
  }
}
.form {
  font-size: 25px;
}
@media all and (min-width: 320px) {
  .form {
    font-size: 20px;
    padding: 20px;
  }
}
.numberbox {
  height: 27px;
  width: 156px;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 10px;
}
.test {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn {
  border-radius: 10px;
  padding: 10px;
  border: none;
  background-color: #ff637d;
  color: white;
  font-size: 25px;
  margin-bottom: 30px;
  width: 127px;
}
.result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clue {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f4f1bb;
}
@media all and (min-width: 320px) {
  .clue {
    padding: 20px;
    text-align: center;
  }
}

.attemps {
  border: 2px solid #eaf2e3;
  font-size: 20px;
  padding: 10px;
  border-radius: 5px;
}
