body,
main {
  color: #eee;
}
.number,
h1 {
  left: 50%;
  text-align: center;
}
.again,
.left,
main {
  display: flex;
}
.guess,
.number,
h1 {
  text-align: center;
}
.btn,
.guess {
  font-family: inherit;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
body {
  font-family: "Press Start 2P", sans-serif;
  background-color: #222;
}
header {
  position: relative;
  height: 35vh;
  border-bottom: 7px solid #eee;
}
.again,
.between,
.number,
h1 {
  position: absolute;
}
main {
  height: 65vh;
  align-items: center;
  justify-content: space-around;
}
.left {
  width: 52rem;
  flex-direction: column;
  align-items: center;
}
.right {
  width: 52rem;
  font-size: 2rem;
}
h1 {
  width: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}
.number {
  bottom: 0;
  transform: translate(-50%, 50%);
  background-color: #eee;
  color: #333;
  font-size: 6rem;
  width: 15rem;
  padding: 3rem 0;
}
.between {
  font-size: 1.4rem;
  top: 2rem;
  right: 2rem;
}
.again {
  top: 2rem;
  left: 2rem;
  align-items: center;
  justify-content: center;
}
.guess {
  background: 0 0;
  border: 4px solid #eee;
  color: inherit;
  font-size: 5rem;
  padding: 2.5rem;
  width: 25rem;
  display: block;
  margin-bottom: 3rem;
}
.btn {
  border: none;
  background-color: #eee;
  color: #222;
  font-size: 2rem;
  padding: 2rem 3rem;
  cursor: pointer;
}
.btn:hover {
  background-color: #ccc;
}
.message {
  margin-bottom: 8rem;
  height: 3rem;
}
.label-score {
  margin-bottom: 2rem;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 59em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 34em) {
  main {
    flex-direction: column;
    height: 60vh;
  }
  .right {
    text-align: center;
  }
  .left {
    margin-top: 4rem;
  }
  h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  .btn {
    padding: 1rem 1.5rem;
  }
}
