#Startchutney {
    background-image: url('../img/chutney-gruenetomaten3.jpg');
    background-position: 50% 70%;
    /* Bild wird zentriert aber leicht nach oben verschoben */
    background-size: cover;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
}


/* Transparente Farbe vor HG-Bild */

#Startchutney::before {
    content: '';
    background: var(--black);
    z-index: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: .1;
}

.headline-small {
    color: white;
    position: absolute;
    top: 150px;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
}

.headline-small h1 {
    /* -webkit-text-stroke: 1px var(--black);   */
    text-shadow: 0 0 40px var(--black);
}

#Section1 {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}


/* Vorbereitung */

#Recipecontainer {
    width: 60%;
}

.recipe-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.preparation {
    display: flex;
}

.preparation-box {
    background-color: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    flex: 1;
    margin: 40px;
}

.preparation-box img {
    height: 30px;
    border-radius: 0px;
    margin-right: 15px;
    padding-left: 15px;
}

.preparation-box p {
    font-size: 1.2em;
    margin: 10px;
    white-space: nowrap;
    /* Kein Zeilenumbruch */
}


/* Zutaten Portionen*/

table {
    width: 100%;
}

.ingredients-input {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ingredients-input p {
    margin: 0;
    margin-right: 20px;
    white-space: nowrap;
}

.ingredients-input input {
    font-size: 1em;
    padding: 9px;
    border: 1px solid var(--gray);
    border-radius: 7px;
}

#Portions {
    font-size: 1em;
    font-weight: 100;
    background-color: var(--orange);
    border: 0;
    cursor: pointer;
    margin-left: 10px;
    padding: 10px;
    border-radius: 7px;
    transition: background-color 125ms ease-in-out;
}

#Portions:hover {
    background-color: var(--orange-hover);
}


/* Zutaten */

.recipe-left {
    width: 100%;
}

.one-ingredient {
    /* Eine Reihe */
    display: flex;
    padding: 15px;
    border-radius: 7px;
}

.one-ingredient:nth-child(odd) {
    /* Die ungeraden Zeilen werden grau */
    background-color: var(--gray);
}

.number {
    width: 60px;
    text-align: right;
}

.unit {
    width: 50px;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}


/* Zubereitung */

.recipe-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recipe-right h4 {
    font-size: 1.4em;
}

.total-time {
    margin: 0;
}

.recipe-from {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.recipe-right h5 {
    font-size: 30px;
    margin: 0;
}

.recipe-from h6 {
    font-size: 25px;
    margin: 0;
    margin-left: 30px;
}

.recipe-from img {
    background-color: var(--orange);
    width: 100px;
    border-radius: 50%;
}

@media (max-width: 1200px) {
    #Recipecontainer {
        width: 80%;
    }
}

@media (max-width: 850px) {
    .preparation-box {
        margin: 10px;
    }
}

@media(max-width: 650px) {
    .preparation {
        flex-direction: column;
    }
    .ingredients-input {
        flex-direction: column;
    }
    #Ingredients {
        margin: 10px;
    }
    .headline-small {
        font-size: 2rem;
        top: 100px;
    }
    .preparation-box {
        flex-direction: column;
    }
    .preparation-box img {
        margin-top: 10px;
    }
}