html {
  box-sizing: border-box;
}

*,
* ::before,
* ::after {
  box-sizing: inherit;
}

body {
  background-color: #182638;
  font-family: "Courier New", Courier, monospace;
  color: #e1e7e8;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1.title {
  font-size: 4rem;
  margin-bottom: 20px;
}

.sectionOne {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.playerBox,
.computerBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  width: 400px;
  height: 400px;
  background-color: #74add5;
  border-radius: 8%;
}
h4.playerH4 {
  margin-top: 20px;
  margin-bottom: 20px;

  font-size: 2.3rem;
  font-weight: 900;
}

.playerImage {
  width: 70px;
  height: 70px;
}

div.playerScoreBoard,
div.computerScoreBoard {
  display: flex;
  width: 200px;
  gap: 20px;
  margin-bottom: 35px;
}

p.score {
  font-weight: 900;
  font-size: 2ch;
}

div.choice {
  display: flex;
  gap: 1.5em;
}
.choiceBox {
  border: 3px solid black;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  width: 105px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.1s ease-in-out;
}

.choiceBox:hover {
  transform: scale(0.92);
}

div.playerChoiceMade {
  background-color: #71b288;
}

div.computerChoiceMade {
  background-color: rgb(137, 223, 216);
}

.text {
  margin: 0px;
  color: #202125;
  font-weight: 900;
  text-align: center;
}

.ties {
  font-size: 1.7rem;
  text-align: center;
}

.stoneImg,
.paperImg,
.scissorsImg {
  width: 78px;
  height: 75px;
  border-radius: 20%;
}

a {
  text-decoration: none;
  color: #e1e7e8;
}

.lostSite,
.winSite {
  display: flex;
  flex-direction: column;

  align-items: center;
  padding: 200px;
}

.losingImg,
.winImg {
  width: 200px;
  height: 200px;
  margin-bottom: 0;
}
p.lose,
p.win {
  font-size: 6rem;
  text-align: center;
  margin: 2px;
}

.finalSiteScore {
  align-items: center;
  appearance: none;
  background-color: #fcfcfd;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395a;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.finalSiteScore:focus {
  box-shadow: #d6d6e7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
}

.finalSiteScore:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #d6d6e7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.finalSiteScore:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}
