* {
    margin: 0px;
    padding: 0px;
}

body {
    text-align: center;
    background-color:darksalmon
    }

h1 {
    background-color: rgb(125, 168, 52);
    height: 50px;
    line-height: 50px;
}

.container {
    height:200px;
    
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 3rem;
    margin-top: 5rem;
}

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

img {
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius: 50%;

}

.choice:hover {
    border: 4px solid black;
    cursor: pointer;

}

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

}

#score-u,
#score-c {
    font-size: 4rem;
}

.msgbox {
    margin-top: 5rem;
}

#msg {
    background-color: #081b31;
    color: #fff;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}