body {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.lastResult {
  color: #630c0c;
  padding: 7px;
}

.guesses {
  color: white;
  padding: 7px;
  text-decoration: none;
}

button {
  background-color: #141414;
  color: #fff;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  font-size: 30px;
  border-style: none;
  margin-top: 30px;
}

#subt {
  background-color: #000000;
  color: #ffffff;
  width: 150px;
  height: 30px;
  border-radius: 2px;
  font-size: 13px;
  margin-top: 20px;
  border-style: none;
  font-family: "Open Sans", serif;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#guessField {
  color: #000;
  width: 100%;
  max-width: 400px;
  height: 60px;
  font-size: 20px;
  border-style: none;
  margin: 25px auto;
  font-family: "Ysabeau SC", serif;
  text-align: center;
  border-radius: 5px;
  box-shadow: 5px 5px 10px black;
  display: block;
}

#guess {
  font-size: 24px;
  margin: 20px 0;
  color: #000000;
  font-family: "Poppins", serif;
  font-weight: 900;
  text-align: center;
  display: block;
}

#wrapper {
  box-sizing: border-box;
  width: 90%;
  max-width: 500px;
  background-color: #adefb1;
  color: #740505;
  font-size: 20px;
  border-radius: 25px;
  margin: 20px auto;
  box-shadow: 10px 10px 15px black;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 36px;
  padding: 20px 0;
  text-shadow: 2px 2px 10px black;
}

h1:hover {
  cursor: pointer;
}

p {
  font-size: 15px;
  font-family: "Raleway", serif;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  transition: 0.5s ease;
  margin: 10px 0;
  text-align: center;
}

.leftP {
  height: 15px;
  margin: 10px 0;
  border: none;
}

.lowOrHi {
  margin-top: 20px;
  padding-bottom: 10px;
}

#padBottom {
  padding-bottom: 20px;
}


@media (max-width: 600px) {
  #guessField {
      height: 50px;
      font-size: 18px;
  }

  #subt {
      width: 100px;
      height: 30px;
      font-size: 12px;
  }

  h1 {
      font-size: 30px;
  }

  p {
      font-size: 14px;
  }

  #wrapper {
      width: 95%;
      padding: 15px;
  }
}
