body {
    background-color: #121212;
    max-width: 75%;
    height: 100%;
    margin:auto;
    display:flex;
    flex-direction: column;
    padding: 20px;
    gap: 50px
}

.heading {
    width: 100%;
    font-family:'Roboto';
    color: white;
    font-size: 50px;
    display: flex;
    justify-content: center;
}

.playerSelection {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#choice1, #choice2, #choice3 {
    background-color: #332940;
    color: white;
    font-family: 'Roboto';
    border: 0px;
    height: 75px;
    width: 150px;
    border-radius: 15px;
    font-size: 20px;
    cursor: pointer;
}

.resultBox {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto';
    font-size: 15px;
    color: white;
    padding: 5px 0px 5px 0px;
}

.results {
    background-color: #332940;
}

.win {
    background-color: #00cf00;
}

.lose {
    background-color: #dd0000;
}

.draw {
    background-color: gray;
}