* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: lightblue;
}


h1 {
    background-color: rgb(11, 83, 107);
    color: white;
    padding: 20px;
    width: 50%;
    margin: auto;
    border-radius: 10px;
    margin-top: 0.5rem;
    font-size: 3rem;
}

.choice {
    height: 190px;
    width: 190px;
    padding: 10px;
    /* display: inline-block; */
    border-radius: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #0b2c51; */
}

.choice:hover {
    cursor: pointer;
    opacity: 0.7;
    background-color: rgb(11, 83, 107); 
}

img {
    height: 200px;
    width: 200px;
    /* object-fit: cover; */ /* ye object ko cover krne k liye h */
    border-radius: 40%;
}

.game {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    gap: 5rem;
    margin-top: 2rem;
}

#user-score, #comp-score {
    font-size: 5rem;
}

#msg {
    font-size: 3rem;
    margin-top: 3rem;
    background-color: rgb(11, 83, 107);
    color: white;
    padding: 15px;
    border-radius: 3rem;
    
}

.msg-container {
    width : fit-content;
    margin: auto;
}

@media (max-width: 600px) {
    .game {
        flex-direction: column;
        gap: 0.5rem;
    }
    .score-board {
        gap: 1rem;
        font-size: 35px;    
    }
    h1 {
        font-size: 23px;
    }
    .choice {
        height: 120px;
        width: 120px;
    }
    img {
        height: 130px;
        width: 130px;
    }
    #msg {
        font-size: 20px;
        padding: 10px;
    }
}    