* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: rgb(59, 59, 59);
    
}

.game-heading{
    text-align: center;
    background-color: rgb(52, 52, 52)
}

h1{
    text-align: center;
    background-color: rgb(52, 52, 52) ;
    padding: 2vh 0;
}

.user-options{
    display: flex;
    justify-content: center;
    gap: 8vw;
    padding: 4vh 0;
}

.user-options button{
    background-color: transparent;
    border: none;
    font-size: 150px;
    border: 1px solid rgb(186, 186, 186);
    border-radius: 8px;
    cursor: pointer;
}

.user-choice-container{
    text-align: center;
}



.computer-choice-container{
    text-align: center;
}

.result-container{
    text-align: center;
}