body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.choice {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.choice:hover {
    transform: scale(1.1);
}

.choice img {
    width: 80px;
    height: 80px;
}

#result {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#scores {
    font-size: 18px;
    margin-bottom: 10px;
}

#scores span {
    margin: 0 10px;
}

#finalResult {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
}