#Section1 {
    display: flex;
    justify-content: center;
    padding-top: 120px;
    margin-top: -120px;
}

.section1container {
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    width: 80%;
    margin-bottom: 70px;
}


/* Image von Rezept des Tages */

.image {
    max-height: 400px;
    width: 600px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.recipe-text {
    margin-left: 30px;
}

.explain {
    margin-bottom: 50px;
}

.linkbtn {
    color: var(--black);
    background-color: var(--orange);
    font-weight: 600;
    padding: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 230ms ease-in-out;
    border-radius: 5px;
}

.linkbtn:hover {
    background-color: var(--orange-hover);
}

.linkbtn:active {
    background-color: var(--orange);
}

#Recipe1,
#Recipe2,
#Recipe3 {
    display: none;
}

@media (max-width: 1000px) {
    #Section1 {        
        padding-top: 100px;
        margin-top: -100px;
    }
    .section1container {
        width: 80%;
        margin: 0px;
        margin-bottom: 90px;
    }
    .flex {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .recipe-text {
        margin-left: 0;
    }
    .image {
        width: 100%;
    }
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 850px){
    #Section1 {        
        padding-top: 80px;
        margin-top: -80px;
    }
}