* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Poppins', sans-serif;


}
body {
     background: linear-gradient(135deg, #ff9a8b, #ff6a88, #ff99ac);
}



h1 {
    background-color: white;
    color: rgb(82, 37, 122);
    height: 5rem;
    font-size: 3rem;
    text-align: center;
    line-height: 5rem;
}

.choice {
    height: 30vw;
    width: 30vw;
    max-width: 160px;
    max-height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice:hover {
    cursor: pointer;
    
}

img {
    width: 90%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4);
    transition: box-shadow 0.3s ease;
}

.choice:hover img {
    box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.8);
}

.choices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.score-board {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: center;
    
}

#user-score, #comp-score {
    font-size: 3rem;
}

.msg-container {
    margin-top: 3rem;
}

#msg {
    display: inline;
    padding: 0.5rem;
    color: #333; /* or any readable text color */
    font-size: 1.4rem;
    margin: 1rem auto;
    background-color: transparent; /* remove colored box */
    font-family: 'Poppins', sans-serif;
}


.reset-container {
    margin-top: 50px;
    text-align: center;
}

#reset-btn {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border-radius: 1rem;
    border-color: #eeeded;
    background-color: #eb6beb;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#reset-btn:hover {
    background-color: #eb8aeb;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        line-height: 3.5rem;
    }

    #reset-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .choice {
        width: 40vw;
        height: 40vw;
    }

    #user-score, #comp-score {
        font-size: 2.5rem;
    }
}




