:root {
  --header-color: #bd9b60;
  --background-color: #004687;
  --text-color: #ffffff;
}

body {
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  font-family: "Press Start 2P", cursive;
}

.header {
  background-color: var(--header-color);
  display: flex;
  justify-content: center;
  padding: 30px;
}

.title {
  color: var(--text-color);
  font-weight: bolder;
}

#page_title {
  font-size: 40px;
}

.upper-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  /* border: solid black; */
  margin-top: 10px;
}

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

#result-text {
  font-size: 30px;
}

#explanation-text {
  margin-top: 10px;
  font-size: 20px;
}

.scoreboard {
  position: absolute;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 180px;
  background-color: var(--header-color);
  border-radius: 25px;
}

#score_title {
  font-size: 20px;
}

.score-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 120px;
  height: 120px;
}

#playerName,
#computerName {
  font-size: 12px;
}

.scores {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

#score {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-text {
  font-size: 40px;
  color: var(--text-color);
}

.choices {
  display: flex;
  margin-top: 20px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 800px;
  height: 250px;
  margin-left: 10px;
  align-self: center;
  justify-self: center;
}

.choice-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.choice {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--header-color);
  border-radius: 25px;
}

#choice-text {
  font-size: 15px;
}

.weapons {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 0;
  /* border: solid #092c5c; */
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 700px;
  height: 300px;
  margin-left: 10px;
  align-self: center;
  justify-self: center;
}

.weapons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

button {
  cursor: pointer;
  border-style: none;
}

.weapon {
  /* border: solid #092c5c; */
  width: 200px;
  height: 200px;
  background-color: var(--header-color);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#weapons-text {
  font-size: 20px;
}

.weapon-image {
  width: 180px;
  height: 180px;
  border-color: var(--background-color);
}
