body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdebd0; /* Light pastel yellow */
    color: #333;
}

header,
footer {
    background-color: #ff6b81; /* Pink */
    color: #fff;
    padding: 1em;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.score-panel {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #feca57; /* Yellow */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #fd7e14; /* Orange */
}

#scene {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.object {
    width: 100px;
    height: 100px;
    margin: 10px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #ff7675; /* Coral */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.object.clicked {
    opacity: 0.5;
}
