* {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: rgb(151, 147, 147);

    h1 {
        background-color: black;
        color: rgb(211, 211, 178);
        height: 4rem;
        line-height: 4rem;
    }

    .bg_img {
        margin-top: 1rem;
    }

    .choice {
        height: 100px;
        width: 200px;
        border-radius: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .choice:hover {
        opacity: 52%;
        cursor: pointer;
        /* background-color: black; */
    }


    img {
        height: 180px;
        width: 210px;
        object-fit: cover;
        border-radius: 60%;
        margin-top: 0.5%;
    }

    .choices {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        margin-top: 5rem;
    }


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

    #user-score,
    #comp-score {
        font-size: 5rem;

    }

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

    #msg {
        background-color: #deb887;
        color: black;
        font-size: 2rem;
        display: inline;
        padding: 1rem;
        border-radius: 1rem;

    }
}