body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Add this to stack elements vertically */
    background-color: #f0f0f0;
}

#scene {
    position: relative;
    width: 400px;
    height: 200px;
    border: 1px solid #000;
}

.entity {
    position: absolute;
    bottom: 0;
}

#sheep {
    width: 50px;
    height: 50px;
    background-image: url('sheep.png');
    background-size: cover;
    border-radius: 50%;
    left: 1;
    z-index: 2; /* Ensure sheep is above the bed */
}

#bed {
    width: 150px;
    height: 150px;
    background-image: url('bed-001.jpg');
    background-size: cover;
    right: 100px;
    z-index: 1;
}

#counter {
    margin-top: 20px;
    font-size: 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f3f3f3; /* Light grey background */
    color: #333; /* Dark text color */
    width: 100%;
    font-size: 1rem;
    margin-top: 20px; /* Add space between the content and footer */
}

