* {
  margin: 0;
  padding: 0;
  text-align: center;
}
body{
  background-color:rgb(201, 242, 228);
  background-image: url("download.jpg");
  background-size: auto;
  width: 100%;
}
header{
  background-color: rgb(4, 4, 43);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  width: 100%;
}
h1 {
  font-size: 40px;
  color: white;
  height: 6rem;
  width: 600px;
  line-height: 5rem;
}
section{
  width: 100%;
  height: 650px;
  margin-top: 0px;
}
.choices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.choice {
  margin-top: 5rem;
  height: 210px;
  width: 210px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choice:hover {
}
img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 50%;
}
#Rock:hover {
  background-color: palevioletred;
  cursor: pointer;
  opacity: 0.9;
}

#Paper:hover {
  background-color: rgb(205, 93, 205);
  cursor: pointer;
  opacity: 0.9;
}
#Scissor:hover {
  background-color: rgb(147, 147, 244);
  cursor: pointer;
  opacity: 0.9;
}
.score-board {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 3rem;
  gap: 5rem;
}
.score{
  font-weight:600 ;
}
#user-score {
  font-size: 4rem;
}
#comp-score {
  font-size: 4rem;
}
#msg{
  background-color: rgb(109, 25, 94);
  color: white;
  font-size: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}
.msg-container{
  height: 60px;
  display: flex;
  align-items: center;
  padding: 1rem;
  justify-content: center;
}