#heading{
    color: rgb(81, 121, 176);
    margin-top: 50px;
    text-align: center;
}

.choices{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 50px;
}

.choice{
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.choice:hover{
    transform: scale(1.2);
}

.score-board{
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 40px;
    font-size: 20px;
}

.msg-container{
    text-align: center;
    margin-top: 40px;
    transition: transform 0.3 ease, background-color 0.3s ease;
}

.msg-container:hover{
    transform: scale(1.05);
}

#user-score, #comp-score{
    font-size: 30px;
}

#msg{
    background-color: rgb(81, 121, 176);
    color: white;
    font-size: 15px;
    display: inline;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3 ease, background-color 0.3s ease;
}

#msg:hover{
    transform: scale(1.2);
    background-color: rgb(34, 84, 158);
}   