*{
    margin:0;
    padding:0;
    text-align:center;
    

}
body{
    margin:0;
    padding:0;
    min-height:100vh;   
    width:100%;

    background-image:url("bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;
}
h1{
    
    color:white;
    height:5rem;
    line-height:5rem;
}
#newbtn{
    background-color:#e3eb0d;
    color:#ed0909;
    display:inline;
    font-size:1.5rem;
    height:50px;
    padding:0 10px 0 10px;
    border-radius:1rem;
    margin-top:3rem;
    cursor:pointer;
    text-transform: capitalize;
    font-weight:bolder;
}
.symbol{
    height:110px;
    width:110px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}
img{
    height:100px;
    width:100px;
    object-fit:cover;
    border-radius:50%;
}
.container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:3rem;
    margin-top:3rem;
}
.symbol:hover{
    background-color:rgb(194, 239, 29);
    cursor:pointer;
}
.scoreboard{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    gap:5rem;
    margin-top:3rem;
}
#userscr,#compscr{
    font-size:3rem;
    color:darkred;
    background-color:#e2c044 ;
    height:50px;
    width:50px;
    border-radius: 30%;
}
#playbtn{
    margin-top:5rem;
}
#msg{
    background-color:#0d73e8;
    color:#fff;
    display:inline;
    font-size:1.5rem;
    height:50px;
    padding:1rem;
    border-radius:1rem;
}
.player{
    text-transform: capitalize;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color:azure;
    border-radius: 5px;
}
.box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:3rem;
}

