@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
  font-family: 'Roboto Mono', monospace;
  font-size: 42px;
  /* overflow: hidden; */
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.choices {
  width: 1450px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.choice {
  width: 300px;
  padding: 40px;
  height: 355px;
  border: 13px solid white;
  display: grid;
  place-items: center;
}

.choice:hover {
  cursor: pointer;
  border: 13px solid #FFB800;
}

.choice img {
  max-width: 100%;
  max-height: 300px;
}

.results {
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: space-evenly;
  align-items: center;
  margin: none;
  padding: none;
  z-index: -5;
}

.win {
  display: none;
  position: absolute;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  opacity: .75;
  background-image: url('./images/you-win.svg');
  background-repeat: no-repeat;
  background-attachment: left;
}

.win h3 {
  margin-top: 5%;
  margin-left: 20%;
}

.lose {
  display: none;
  position: absolute;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  opacity: .75;
  background-image: url('./images/computer-wins.svg');
  background-repeat: no-repeat;
  background-position-x: right;
}

.lose h3 {
  margin-top: 5%;
  position: absolute;
  right: 20%;
  /* margin-right: 20%; */
}

.playAgain {
  position: absolute;
  display: flex;
  top: 80%;
  justify-content: center;
  font-size: 38px;
  border: 5px solid black;
  padding: 20px 120px;
  background-color: white;
  font-family: 'Roboto Mono', monospace;
  z-index: 10;
}