/* reset styles */
* {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  font-family: arial, sans-serif;
  box-sizing: border-box;
}

/* body and shared styles */
body,
.number-entry-area,
.guess-count-area {
  display: flex;
}

body,
.number-entry-area {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



body {
  background-color: #55433B;
  height: 100vh; 
  gap: 2rem;
}

p, label {
  color: #BDA79E;
}


label, 
p, 
button {
  font-size: 3rem;
}

/* main content styles */
h1 {
  text-align: center;
  font-size: 6rem;
  color: #88C87E;
}

.number-entry-area {
  width: 50%;
  gap: 1rem;
}

.number-entry-area, 
.stats-area {
  display: none;
} 

#guessed-number {
  background-color: #BDA79E;
  color: #0058CC;
  width: 13rem;
  height: 10rem;
  border-radius: 1.5rem;
  border: none;
  padding: 1rem 1rem;
  font-size: 6rem;
}
#guessed-number::-webkit-inner-spin-button,
#guessed-number::-webkit-outer-spin-button {
  appearance: none;
}

button {
  padding: 1rem 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  color: #55433B;
  background-color: #FFA17A;
  text-transform: uppercase;
}
button:hover,
.new-game-btn:hover {
  background-color: #FFE9E5;
}
button:active,
.new-game-btn:active {
  background-color: #FFA17A;
}


.stats-area {
  gap: 4rem;
  text-align: center;
}


.stats {
  font-weight: 700;
  font-size: 6rem;
  padding: 2rem;
  color: #BDA79E;
  border: 0.3rem solid #BDA79E;
  border-radius: 2rem;
  margin-bottom: 1rem;
  min-width: 13rem;
  height: 11rem;
}
