@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Oxygen', sans-serif;
}
header{
    text-align: center;
    font-size: 25px;
    background: white;
    color: black; 
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
}

body{
  background: rgb(34, 79, 139);  
  color: white;
  text-align: center;
  
}
#top-board{
    /* border: 2px solid red; */
    /* width: 20%;
    margin: auto; */
    margin-top: 10px ;
    font-size: 15px;
}
.score_board{
    border: 3px solid white;
    border-radius: 5px;
    width: 200px;
    margin: 10px auto 20px auto;
    font-size: 45px;
    position: relative;
}
.templete{
    background: red;
    padding: 2px 10px;
    font-size: 15px;
}
#user_temp{
    position: absolute;
    top: 15px;
    left:  -33px;
    border: 1px solid white;
    border-radius: 15px;
}
#bot_temp{
    position: absolute;
    top: 15px;
    right:  -33px;
    border: 1px solid white;
    border-radius: 15px;
}
#result{
    border: 2px solid white;
    border-radius: 50px;
    width: 65%;
    font-size: 30px;
    margin: 20px auto;
    padding: 20px;
    font-weight: bold;
    color: white;
}
#images{
    display: flex;
    justify-content: space-around;
    width: 40%;
    height: 150px;
    margin: 20px auto;
}
.rpsimg img{
    /* border: 2px solid red; */
    border-radius:20% ;
    background: white;
    transition: all 0.2s ease;
}
.rpsimg img:hover{
    border:  4px solid red;
    box-shadow: 10px 5px 5px black;
    cursor: pointer;
}
#names{
 /* border: 2px solid red; */
 width: 60%;
 margin: 20px auto;
 padding: 10px;
}
.rps_nmaes{
    padding :0px 17px 0px 61px;
    font-size: 30px;
    color: rgb(5, 10, 10);
    font-family: 'Baloo 2', cursive;
}
#text{
    font-size: 30px;
    font-weight: bold;
    color: black;
}
#message{
    color: red;
}
footer{
    margin: 8px;
    font-size: 15px;
    /* border: 2px solid red; */
}