@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins;
}
html{
  width: 100%;
  height: 100%;
}
body{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  flex-direction: row;
  background: #e0e0e0;
}


.game{
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  height: max-content;
  padding: 20px 30px;
}
.contact{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.contact .github{
  padding: 5px 20px;
  border: none;
  background-color: #7E30E1;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
}
.github:hover{
  background-color: #2b89ea;
}

.gameSection{
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #7E30E1;
  align-items: center;
}
.gameSection .gameName{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.gameName h3{
  font-weight: 700;
  font-size: 1.6rem;
}
.gameName p{
  font-size: 1rem;
  font-weight: 500;

}

.gameContent{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.gameContent p{
  font-size: 2rem;
  padding-top: 35px;
  font-weight: 500;
}
.gameContent .gameScore{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.gameScore .left{
  width: 100%;
  border-right: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  padding: 20px 0;
}
.gameScore .right{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-left: 1px solid;
  padding: 20px 0;
  line-height: 30px;
}
.left span, .right span{
  font-size: 3rem;
}
.left p, .right p{
  color: #3e3e3e;
  font-size: 1.5rem;
  font-weight: 400;
}

.gameScore #botChoice, #userChoice{
  font-size: 1rem;
  font-weight: 500;
  padding-top: 10px;
  color: #4a5568;
}

.gameContent .result{
  color: #4a5568;
  font-size: 1.2rem;
  padding-top: 20px;
  font-weight: 700;
}

.gameContent .choose{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}
.choose .choice{
  padding: 5px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #7E30E1;
  color: #fff;
  font-weight: 500;
}
.choose .choice:hover{
  background-color: #2b89ea;
}
.gameContent .reset{
  background-color: #fff;
  padding: 5px 35px;
  color: #7E30E1;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
  border-radius: 5px;
  border: 0.1px solid #5580cb66;
  cursor: pointer;
}
.reset:hover{
  box-shadow: 0 0 5px #4a556866;
}
.gameContent .gameCount{
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: center;
}
.gameCount p{
  font-size: 1rem;
  padding: 15px 0;
  font-weight: 500;
}
.gameCount span{
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 10px;
}














@media (max-width: 884px){
 body{
  flex-direction: column;
 } 
 .other{
  align-items: center;
  padding-left: 0;
  padding-bottom: 0;
 }
}
