body {
    background: #e0da9f;
    display: grid;
    gap: 0.5em;
}

@media (min-width: 100em) {

    body {
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto 1fr 100px;
    }
}

header,
footer {
    grid-column: 1 / -1;
}

h1 {
    color: #FFFFFF;
    text-shadow: 4px 3px 0px #7A7A7A;
    text-align: center;
    margin-bottom: 0.5em;
}

.food {
    color: rgb(107, 134, 211);
}

.strong {
    font-weight: 900;
}

#karotte {
    font-style: italic;
    color: orange;
}

#Baby {
    width: 155px;
    height: 80px;
    position: absolute;
    left: 10em;
    top: 10em;
}

#spass {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 2em;
    bottom: 5em;
    animation: bounce 2s ease infinite;
}

#Zwerg {
    width: 155px;
    height: 80px;
    position: absolute;
    left: 10em;
    top: 20em;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

#margin_Feldhase {
    float: left
}

.border {
    border-width: 0, 5em;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    width: 10em;
}

.angelegte_Ohren {
    margin-top: 1em;
}