/* body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.choice {
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 20px;
}

.choice:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */


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

h1{
    background-color: #081b31;
    color: #fff;
    height: 5rem;
    line-height: 5rem;
}

.choice{
    width: 165px;
    height: 165px;
     border-radius: 50%;
     display: flex;
    justify-content: center;
    align-items: center;
    
}

.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5rem;
}

img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.choice:hover{
   background-color: #081b31; 
    cursor: pointer;
}

.score-board{
   display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 3rem;
    gap: 5rem;
}

#user-score, #computer-score{
    font-size: 4rem;
}

#msg{
    background-color: #081b31;
    color: #fff;
    margin-top: 5rem;
    font-size: 2rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
}

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

