* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #161d6f;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-y: hidden;
  overflow-x: hidden;

  color: #7085f8;
}
.padding-bottom {
  padding-bottom: 20px;
}
h3 {
  margin-bottom: 5px;
  font-size: 18px;
}
.opening-message {
  color: #7085f8;
  display: flex;
  width: 750px;
  margin: 0 auto;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.message p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* color: #161d6f; */
  color: #7085f8;
}
.hr {
  border-top: 1px solid #7085f8;
  width: 100%;
  margin-bottom: 5px;
}
.rules-header {
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 600;
  color: #fff;
}
ul {
  font-size: 14px;
}

.btn-next {
  margin-top: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  color: #161d6f;
  font-weight: 600;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
button:hover {
  background-color: #7085f8;
  color: #fff;
}
.winner {
  display: none;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.winner .winner-message {
  font-family: "Press Start 2P";
  color: #fff;
  font-size: 52px;
  margin-bottom: 30px;
}
.winner button {
  padding: 10px 40px;
  font-family: "Press Start 2P";
  color: #161d6f;
  cursor: pointer;
}
main {
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
}

nav {
  background-color: #0b2f9f;
  /* height: 60px; */
  display: none;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
p {
  font-family: "Press Start 2P";
  color: #fff;
}

.score {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  width: 50px;
  height: 50px;
  background-color: #fff;
}
.score p {
  color: #000;
  font-size: 24px;
  text-align: center;
}

h1 {
  font-size: 18px;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

#user-choice,
#computer-choice {
  display: flex;
  justify-content: center;
  align-items: center;
}

#result {
  font-family: "Press Start 2P";
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
}
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 750px;
  background-color: #0b2f9f;
  margin: 0 auto;
  border: 2px solid #98ded9;
}

.user-choice {
  display: flex;
  flex-direction: column;
  height: 300px;
}

.user-selection img {
  width: 50px;
}

.user-selection button img {
  pointer-events: none;
}

.user-selection button span {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  pointer-events: none;
}
.user-selection {
  padding: 15px;
  display: flex;
  gap: 20px;
}
.user-selection button {
  background-color: #fff;
  padding: 10px;
  border: none;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box {
  width: 80%;
  height: 80%;
  background-color: #fff;
}

/* helper  class */
.flex-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Result Div */
.result {
  display: flex;
  justify-content: center;
  align-items: center;
}
