body{
    /* overflow: hidden; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.game{
    padding: 0px;
}
canvas{
    display: block;
    margin: 0 auto;
}
.game span{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(to right, #f0c27b, #4b1248);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.leader-back{
    justify-self: flex-end;
    height: fit-content;
    /* z-index:-1; */
    background-color: #58a19285;
    border-radius: 10px 10px 10px 10px;
    padding-bottom: 5px;
    width: 30%;
}
.leader-header{
    background-color: #58a193;
    width: 100%;
    font-weight: 500;
    height: 45px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}
#leaderboard {
    padding: 0;
    margin: 0 auto;
    width: 90%;
}
#leaderboard li {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    height: minmax(40px,auto);
    margin-bottom: 5px;
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0, 0.1);
    -ms-box-shadow: 0 5px 5px rgba(0,0,0, 0.1);
    box-shadow: 0 5px 5px rgba(0,0,0, 0.1);
}
.list_num {
    float: left;
    font-size: 22px;
    color: rgba(black, 0.65);
    font-weight: bold;
    background-color: #cdfccc;
    height: auto;
    padding: 3px;
    width: 45px;
    border-radius: 5px 0px 0px 5px;
    text-align: center;
}
.hname{
    font-size: 22px;
    padding: 3px;
    margin-left:5px;
    color:#707070;
    font-weight: 500; 
}