body {
  font-family: Arial, sans-serif;
  background-color: #FFAD85;
}

h2 {
  color: #CC4400;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 3em 0;
}
header div {
  border: 3px solid #FF5C0A;
  border-radius: 6px;
  width: 40%;
  box-shadow: 1px 3px 5px #F55200;
  background-color: #FFBB99;
}
header div h1 {
  font-size: 50px;
  text-shadow: 0 1px 3px #F55200;
  padding: 0.1em;
}

#choosehand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#choosehand h1 {
  font-size: 45px;
  color: #000000;
  text-shadow: 1px 1px 3px #F55200;
}
#choosehand #choicesDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4em;
}
#choosehand .choices {
  font-size: 6em;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
#choosehand .choices:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
}
#choosehand .choices:focus {
  outline: none;
}

#play {
  height: 275px;
}
#play #round {
  text-align: center;
  font-size: 36px;
  text-shadow: 1px 1px 3px #F55200;
}
#play h2 {
  font-size: 30px;
  color: #FF5C0A;
  text-shadow: 1px 1px 3px #000000;
}
#play .chosenHands {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 3.5rem;
  height: 200px;
  text-shadow: 1px 1px 3px #F55200;
}
#play p {
  font-size: 80px;
  transform: scale(1.1);
  margin-top: 0;
}

#winner {
  text-align: center;
  color: #CC4400;
  font-size: 36px;
  font-weight: bold;
  margin-top: 0;
}

#scoreboard {
  text-align: center;
  display: flex;
  justify-content: center;
}
#scoreboard #scoreboardDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  font-size: 20px;
}
#scoreboard h2 {
  color: #FF5C0A;
  text-shadow: 1px 1px 3px #000000;
}
#scoreboard p {
  font-size: 45px;
  text-shadow: 1px 1px 3px #F55200;
}

#reset {
  height: 160px;
  display: flex;
  justify-content: center;
  text-align: center;
}
#reset button {
  font-size: 20px;
  border: 3px solid #FF5C0A;
  border-radius: 6px;
  height: 50px;
  width: 135px;
  text-shadow: 0 1px 3px #F55200;
  box-shadow: 1px 3px 5px #F55200;
  background-color: #FFBB99;
}
#reset button:hover {
  transform: scale(1.05);
  text-shadow: 0 1px 3px #F55200;
  box-shadow: 3px 5px 6px #F55200;
}

#footer {
  text-align: center;
}
#footer a {
  color: #FF5C0A;
}
#footer a:hover {
  color: #F55200;
}

@media screen and (max-width: 768px) {
  header {
    margin: 2em 0;
  }
  header div {
    width: 80%;
  }
  header div h1 {
    font-size: 35px;
    padding: 0.2em;
  }
  #choosehand h1 {
    font-size: 32px;
    margin: 1em 0;
  }
  #choosehand #choicesDiv {
    gap: 2em;
  }
  #choosehand .choices {
    font-size: 4em;
  }
  #play {
    height: auto;
  }
  #play #round {
    font-size: 28px;
    margin: 1em 0;
  }
  #play h2 {
    font-size: 20px;
  }
  #play .chosenHands {
    flex-direction: row;
    gap: 1.5rem;
    height: auto;
  }
  #play p {
    font-size: 50px;
  }
  #scoreboard #scoreboardDiv {
    flex-direction: row;
    gap: 2rem;
    font-size: 18px;
  }
  #scoreboard h2 {
    font-size: 20px;
    margin: 0.5em 0;
  }
  #scoreboard p {
    font-size: 30px;
    margin: 0.5em 0;
  }
  #reset {
    height: 120px;
  }
  #reset button {
    font-size: 18px;
    height: 45px;
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  header {
    margin: 1em 0;
  }
  header div {
    width: 90%;
  }
  header div h1 {
    font-size: 28px;
  }
  #choosehand h1 {
    font-size: 26px;
  }
  #choosehand #choicesDiv {
    gap: 1.5em;
  }
  #choosehand .choices {
    font-size: 3em;
  }
  #play #round {
    font-size: 24px;
  }
  #play h2 {
    font-size: 20px;
  }
  #play p {
    font-size: 50px;
  }
  #scoreboard #scoreboardDiv {
    font-size: 16px;
  }
  #scoreboard h2 {
    font-size: 20px;
  }
  #scoreboard p {
    font-size: 30px;
  }
  #reset {
    height: 100px;
  }
  #reset button {
    font-size: 16px;
    height: 40px;
    width: 110px;
  }
  #footer {
    font-size: 14px;
    margin-top: 1em;
  }
}

/*# sourceMappingURL=styles.css.map */
