* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background-color: rgb(13, 44, 16);
 
}
 


header {
  background-color: rgb(175, 223, 166);
  padding: 25px;
  text-align: center;
}

header h1,
h2 {
  color: rgb(13, 44, 16);
}

img {
  width: 200px;
}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    color: orange;
    font-size: 50px;
    padding: 15px 20px;
    position: relative;
}

.badge{
    font-size: 16px;
    padding: 2px 10px;
    background: orange;
    color: rgb(255, 255, 255);
}

#user-label {
    position: absolute;
    top: 40px;
    left: -25px;
}

#computer-label {
    position: absolute;
    top: 40px;
    right: -25px;
}

.result {
    font-size: 40px;
    color: white;
    padding-bottom: 20px;
}

.result p {
    text-align: center;
    font-weight: bold;
}
#choices {
    text-align: center;
    margin-top: 70px 0;
}
.choice {
    display: inline-block;
    padding-top: 10px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.choice:hover {
cursor: pointer; 
background: orange;  
}

.choice:active {
  scale: 1.1;
}

#action-message {
    text-align: center;
    font-weight: bold;
    color: rgb(175, 223, 166);
    font-size: 50px;

}
.refresh {
    width: 100px;
    border: 2px solid white;
    text-align: center;
    margin: auto;

}

#restart {
text-align: center;
margin:auto;
}
#restart button {
  background-color: orange;
  border-radius: 20%;
  width: 100px;
}