*{
    margin: 0;
    padding: 0;
}

.heading{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: black;
    font-family: sans-serif;
    font-size: 2vw;
    height: 8vw;
}

.choice-container{
    margin-top: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8vw;
}

.choices{
    height: 20vw;
    width: 20vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choices img{
    height: 17vw;
    width: 17vw;
    border-radius: 50%;
    object-fit: cover;
}

.choices:hover{
    background-color: black;
}

.score-board-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    margin-top: 5vw;
    background-color: black;
    color: white;
    width: 20vw;
    margin-bottom: 5vw;
    border-radius: 20px;
    padding: 20px;
}

.user-score{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
}

.comp-score{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.number{
    font-size: 2.5vw;
}

.result-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-box{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: white;
    padding: 10px 20px;
    margin-bottom: 5vw;
    border-radius: 20px;
}