* {
    font-family: roboto;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightgray;
}

.score {
    display: flex;
    background-color: white;
    border-radius: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* height: 200px; */
    padding: 1%;
    width: 40%;
}

.score p {
    width: 50%;
    text-align: center;
    font-size: 30px;
}

#retry {
    border: none;
    background: none;
    font-size: 18px;
}

#retry:hover {
    cursor: pointer;
    color: blueviolet;
    font-weight: bold;
}

#separator {
    border-bottom: 1px solid black;
    padding-top: 10px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    width: 70%;
    text-align: center;
    font-size: 25px;
}

#choice {
    width: 70%;
    display: flex;
    justify-content: space-around;
}

#choice img {
    width: 80px;
}

#playerChoice, #computerChoice {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    width: 40%;
    justify-content: space-between;
}

#playerChoice {
    align-items: start;
}

#computerChoice {
    align-items: end;
}

#playerChoice div, #computerChoice div {
    /* background-color: white; */
    display: flex;
    width: 80%;
    height: 100px;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 20px;
    font-size: 20px;
} 

#playerChoice div:hover {
    cursor: pointer;
    background-color: rgb(229, 229, 229);
}

.selectedPlayer {
    background-color: lightblue;
}

.selectedComputer {
    background-color: rgb(230, 182, 173);
}