body{
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background-color: rgb(43, 43, 43);
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.container{
    background-color: grey;
    width: 600px;
    height: 600px;
    display: flex;
    border: 3px solid white;
    border-radius: 10px;
}
#player{
    width: 50%;
    border: 3px solid white;
    padding: 10px;
}
#playerChose{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}
#playerChose img{
    width: 200px;
}
#playerPoint{
    font-size: 40px;
    text-align: center;
}
#bot{
    width: 50%;
    border: 3px solid white;
    padding: 10px;
}
#botChose{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
}
#botChose img{
    width: 200px;
}
#botPoint{
    font-size: 40px;
    text-align: center;
}

button{
    cursor: pointer;
    width: 200px;
    height: 50px;
    background: grey;
    color: white;
    font: inherit;
    font-weight: bolder;
    border: 2px solid white;
    border-radius: 10px;
	cursor: pointer;
}