* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    text-align: center;
    background-color: #f4f4f4;
}
h1 {
    background-color: blue;
    color: aliceblue;
    height: 5rem;
    text-align: center;
    line-height: 5rem;
    font-size: 2rem;
}
.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.choice {
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
}

.choice img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.choice:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.score-board {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.score {
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.msg-container {
    margin-top: 2rem;
}
#msg {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
