*{
    margin:0;
    padding: 0;
    text-align: center;
    background-color:rgb(251, 243, 243);
    box-sizing:border-box;
}
h1{
    display:flex;
    align-items: center;
    height:75px;
    width: 100%;
    color: aliceblue;
    background-color: rgb(21, 20, 20);
    justify-content: center;
}

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

}

.choice img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    display: block;
}
.choice {
    border-radius: 25px; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.choices{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:4rem;
    margin:4rem 0;
}

.scoreboard{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin: 20px;
    font-size: 2rem;
    user-select: none;
}

.message-container{
    margin-top: 4rem;
    
}
#msg
{
    color: white;
    background-color: black;
    width:auto;
    display: inline;
    font-size: 2rem;
    padding: 5px;
    border-radius: 5px;
    user-select: none;
}