

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 75px;
    gap: 50px;
    width: 600px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    border-radius: 8px;
    padding: 15px;
}

.resultsContainer{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.result{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.roundResult {
    font-size: 32px;
}

.choiceContainer {
    font-size: 32px;
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.scoreContainer {
    width:300px;
    height: 100px;
    background-color: azure;
    border-radius: 30px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-weight: bold;
}

.buttonContainer {
    display: flex;
    gap: 50px;
}

.buttonContainer button {
    padding: 38px;
    border-radius: 10px;
    border-color: aliceblue;
    font-size: 24px;
}

button:hover {
    cursor: pointer;
}