*{
    margin: 0;
    padding: 0;
    text-align: center;
}
h1{
    background-color:#081b31;
    color:white;
    height: 4rem;
    line-height: 4rem;

}
.choice{
    height: 175px;
    width: 175px;
    border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.choice:hover{
    cursor: pointer;
    background-color:#081b31;

}

img{
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius:50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

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

}

#user-score,
#comp-score {
    font-size: 4rem;
}
#reset-btn{
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    background-color: #191913;
    color: #ffffff;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */
#reset-btn:hover{
    background-color: #333333;
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Click (Active) Effect */
#reset-btn:active{
    transform: scale(0.95);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

 

.msg-container{
    margin-top: 5rem;
}

#msg{
    background-color:#081b31 ;
    color: #fff;
 font-size: 2rem;
display: inline;
padding: 1rem;
border-radius: 1rem;
}

