*{
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
body{
    font-family: 'Poppins', sans-serif !important;
}
.title{
    background-color: #1B263B;
    color: white;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 36px;
    transition: all 0.3s ease;
    cursor: pointer; /* Shows pointer on hover */
}

.title:hover {
    color: #778DA9;                /* Change text color */
    transform: scale(1.05);        /* Slight zoom effect */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); /* Optional soft shadow */
}
.choice{
    height: 165px;
    width: 165px;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    cursor: pointer;
}
.choice:hover{
    color: #1abc9c; /* golden yellow on hover */
    transform: scale(1.05); /* slightly enlarge */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    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;

}

.msg-container{
    margin-top: 5rem;
}
#msg{
    background-color: black;
    color: #415A77;
    font-size: 2rem;
    display: inline-block;        /* Makes the paragraph act like a box */
    padding: 10px 20px;
    border: 2px solid #007bff;    /* Blue border */
    border-radius: 10px;
    background-color: #f0f0f0;    /* Light background */
    /* color: #333; */
    font-size: 20px;
    transition: all 0.3s ease;    /* Smooth transition */
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

#msg:hover {
    transform: scale(1.05);
    background-color: #e6f0ff;   /* Slightly bluish background on hover */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.reset-container {
    text-align: center;
    margin-top: 20px;
}

#reset-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #007bff;
    background-color: #f0f0f0;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif !important;
}
#reset-btn:hover {
    transform: scale(1.05);
    background-color: #e6f0ff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
