*{
    margin: 0;
    padding: 0;
    text-align: center;
}

h1{
    background-color: #081b31;
    color:white;
    line-height: 5rem;
    height: 5rem;
}

.choice{
    height:165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice:hover{
     cursor:pointer;
     background-color: black;
}

img{
    height: 150px;
    width: 150px;
    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;
    gap: 5rem;
    margin-top: 3rem;
}

.msg-container{
        margin-top: 5rem;
}

#user-score,
#computer-score{
      font-size: 4rem;
}

#msg{
    background-color: black;
    color: white;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}

@media (max-width: 600px) {
    /* 1. Score Board Container */
    .score-board {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        margin: 10px auto !important;
    }

    /* 2. Dono Scores ka Text (User aur Computer) */
    .score p {
        font-size: 1rem !important; /* Isse text chota ho jayega */
        margin: 5px 0 !important;
        white-space: nowrap !important; /* Text ko ek line mein rakhega */
    }

    /* 3. Score Numbers (16, 24 wagera) */
    #user-score, #comp-score {
        font-size: 1.5rem !important; /* Numbers ka size munasib rakha */
        display: block !important;
    }

    /* 4. Images ko ek line mein laane ke liye */
    .choices {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .choice img {
        width: 65px !important; 
        height: 65px !important;
    }
}

