body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

h1 {
    margin-top: 20px;
}

#game {
    display: inline-block;
    margin-top: 40px;
}

#pig {
    width: 350px;
    cursor: pointer;
    transition: transform 0.1s;
}

#score {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

#pig:active {
    transform: scale(0.9);
}
