body {
  background-color: #181c14;
  font-family: "roboto";
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.container {
  max-width: 30rem;
  height: 100vh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top {
  color: #fff;
  text-align: center;
}
.top__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.top__subtitle {
  font-size: 1.5rem;
}
.middle {
  margin-block: 4rem;
  width: 100%;
  position: relative;
}
.guessBox {
  display: block;
  background-color: inherit;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  border: 2px solid #fff;
  width: 50%;
  height: 5rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  border-radius: 1rem;
  outline: none;
  transition: border 100ms linear;
}
.guessBox:focus {
  /* border: 2px solid seagreen; */
}

.guessboxPlaceholder {
  position: absolute;
  background-color: #fff;
  width: 40%;
  padding: 4px;
  text-align: center;
  top: -12px;
  left: 30%;
  border-radius: 1rem;
  font-size: 1.25rem;
}

.middle__button {
  width: 100%;
}
.btn {
  display: block;
  margin-inline: auto;
  background-color: #fff;
  width: 40%;
  height: 3rem;
  border-radius: 1rem;
  border: none;
  font-size: 1.25rem;
  transition: background-color 100ms linear;
}

.btn:first-child {
  margin-bottom: 1rem;
}

.btn:hover {
  background-color: seagreen;
}

.bottom {
  color: #fff;
  font-size: 1.5rem;
  width: 45%;
}

.score {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.score__num {
}
.highscore {
  display: flex;
  justify-content: space-between;
}
.highscore__num {
}
