* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body {
  background-color: rgb(0, 0, 0);
  color: white;
  font-family: 'Gemunu Libre', sans-serif;
}
.position {
  text-align: center;
  margin: 30px auto;
  border: 2px dashed white;
  border-radius: 7px;
  width: 500px;
  height: 600px;
}
h1 {
  font-size: 50px;
  margin-top: 50px;
  margin-bottom: 10px;
}
h2 {
  margin-bottom: 50px;
  font-weight: normal;
  font-style: italic;
}

span.hidden-number {
  font-size: 60px;
  padding: 15px 40px;
  border: 2px solid white;
  border-radius: 7px;
  color: white;
}
p {
  margin-top: 40px;
  font-size: 25px;
}
.guess-number {
  margin: 20px 0;
}

.check-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 20px;
}

.info {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
  font-size: 20px;
}

.new-game {
  font-weight: 900;
  font-size: 25px;
  background-color: black;
  color: white;
  padding: 5px;
}
