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

.container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2em;
    color: #ff6347;
    margin-bottom: 0.5em;
}

.question {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 1em;
}

.answer {
    font-size: 1.8em;
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 1.5em;
}

.image-container {
    margin-bottom: 1em;
}

.pig-image {
    width: 300px;
    height: auto;
}

.note {
    font-size: 1.2em;
    color: #555;
    margin-top: 1em;
}

