h3{
    text-align: center;
}
.eintrag{
    margin-bottom: 40px;
}
p{
    margin: 0;
    text-align: center;
}
.eintrag img{
    border: solid 1px black;
    width: 250px;
    height: 140px;
}
.eintragNeben{
    gap: 50px;
}
#gesamt{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back{
    text-align: center;
    background: linear-gradient(to bottom, #566c00 5%, #bcc987 100%);
    background-color: #566c00;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Trebuchet MS;
    font-size: 23px;
    padding: 23px 96px;
    text-decoration: none;
    text-shadow: 1px 1px 5px #000000;
    margin-bottom: 40px;
}
.back:hover{
    background:linear-gradient(to bottom, #bcc987 5%, #566c00 100%);
	background-color:#bcc987;
}

.eintragNeben .eintrag{
    box-shadow: none;
    padding: 0px;
    border-radius: 12px;
    background: white;
    width: 250px;
}

@media  screen and (max-width: 700px){
    .eintragNeben{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }
}