.Reset-Backgrd{
    background-color: black;
}

.Page-Back{
  background-color: rgb(231, 195, 151);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 600px;
}



.word1{
    color: aliceblue;
}
.count-tab{
    background-color: rgb(3, 3, 91);
    height: 150px;
    width: 200px;
}

.word-text{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
}
.Title-Back{
    background-color: black;
    height: 50px;
    width: 550px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 25px;
    border-radius: 50px;
    
}
.Total-Back{
    background-color: purple;
    height: 500px;
    width: 600px;
    border-radius: 100px;
}
.word{
    color: white;
    text-align: center;
    font-size: 35px;
    font-weight: solid;
}

.Button-Back{
    background-color: gray;
    height: 300px;
    width: 550px;
    border-radius: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 25px;
}
.Rock-image, .Paper-image, .Scissor-image{
 width: 30px;
 height: 30px;
 
}

.Rock, .Paper, .Scissor{
    width: 150px;
    height: 130px;
    border-radius: 75px;
    cursor: pointer;
    border: solid;
    border-color: black;
}

.Rock:hover, .Paper:hover, .Scissor:hover{
 background-color:green;
 transition-duration: 0.25s;

}



