@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
  height: 100vh;
  overflow: hidden;

}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.compchoice{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-direction: column;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-family: 'Press Start 2P', cursive;
  color: white;
  line-height: 40px;
  letter-spacing: 5px;

}

.game {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;

}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Element | http://127.0.0.1:5500/index.html */

.again {
  height: 55px;
  width: 121px;
  font-size: 15px;
  padding: 15px;
}


/* Element | http://127.0.0.1:5500/index.html */

.btn {
  margin-top: 47px;
}

.winn {
  padding-top: 50px;
}


/* .stone {
  margin-right: 10px;
}

.paper {
}

.scissor {

  margin-left: 16px;
} */

.winner {
  text-align: center;
}

img:hover {
  transition: 1.5s;
  transform: scale(1.3);
}

.winner:hover {
  text-shadow: 0 0 5px #FFDA87;
}

.again:hover {
  transition: 1.5s;
  transform: scale(1.3);
}

/*@media only screen and (max-width: 850px){
  .game{
    flex-wrap: wrap;
  }
}*/