body {
    margin: 0 auto;
    height: 100vh;
    background-image: url(../img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

body::-webkit-scrollbar{
    display: none;
}

#choice {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

#player {
    float: left;
    width: 20%;
}

#ordi {
    float: right;
    width: 20%;
}

#stone {
    height: 50px;
    background: linear-gradient(320deg, #0843f5 5%, #e90e0e 97%);
    margin: 2px;
    font-weight: bold;
   color:white;
}
#stone:hover {
    background: linear-gradient(320deg, #e90e0e 5%, #0843f5 97%);
    }
#paper {
    height: 50px;
    background: linear-gradient(320deg, #0843f5 5%, #e90e0e 97%);
    margin: 2px;
    font-weight: bold;
    color:white;
}
#paper:hover {
    background: linear-gradient(320deg, #e90e0e 5%, #0843f5 97%);
    }
#cisor {
    height: 50px;
    background: linear-gradient(320deg, #0843f5 5%, #e90e0e 97%);
    margin: 2px;
    font-weight: bold;
    color:white;
}
#cisor:hover {
    background: linear-gradient(320deg, #e90e0e 5%, #0843f5 97%);
    }

#info {
    height: 50px;
    margin: 5px;
    text-align: center;
}

#message {
    text-align: center;
    color: white;
    font-size: 20px;
}

#pokeBall {
width: 20%;
margin:auto;
display:flex;
text-align:center;
}

.css-button:hover {
background: linear-gradient(320deg, #e9f01d 5%, #0843f5 97%);
}

#reload{
    position: absolute;
    top: 55%;
    font-weight:bold;
    color: white;
    display: none;
    height: 100px;
    width:200px;
    margin: 5px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(320deg, #e90e0e 5%, #0843f5 97%);
}

#reload:hover {
    background: linear-gradient(320deg, #bae90e 5%, #0843f5 97%);
    }

#scoreBoard1{
    position: absolute;
    font-size: 40px;
    color:blue;
    font-weight: bold;
    top: 70%;
}

#scoreBoard2{
    position: absolute;
    color:#e90e0e;
    font-size: 40px;
    font-weight: bold;
    top: 70%;
    right: 10%;
}