/*                                           BODY & MAIN                                     */

body {
    display: flex;
    flex-direction: column;
}

main {
    flex-direction: column;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}









/*                                                RECIPE                                   */

/*                                                overall                                   */
.Recipe {
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column-reverse;
    width: 100%;
    overflow: scroll;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

.Text {
    display: flex;
    flex-direction: column;
    position: ;
}

.Intro {
    margin-top: 2em;
    padding-left: 1em;
    padding-right: 1em;

}

h1 {
    font-size: 1.5em;
}

.ps {
    font-family: Avenir Light;
    font-style: italic;
    font-size: 0.8em;
    list-style: circle
}

/*                                                Photo                                   */


.RecipePhotoSection {
    display: none;

}

.RecipePhotoSectionPhone {
    display: flex;
    left: 0;
    right: 0;
}

.RecipePhotoSection {
    width: 100%;
    height: 400px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

}

.RecipePhoto {
    width: 100%;
    height: 400px;
    object-fit: cover;
    left: 0;
    right: 0;
}




/*                                                Ingredients                                   */

.IngredientsParent {
    border-top: 1px solid #000000;
    padding-left: 1em;
    padding-right: 1em;
}

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

.Ingredients {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



/*                                                Utensils                                   */

.UtensilsParent {
    border-top: 1px solid #000000;
    padding-left: 1em;
    padding-right: 1em;
}


/*                                                steps                                   */
.Steps {
    border-top: 1px solid #000000;
    padding-left: 1em;
    padding-right: 1em;
}

.Direction {
    list-style: decimal;
    margin-bottom: 1em;
}



/*                                                Dropdown                                   */

.contentclicked {
    display: block;
    cursor: pointer;
}

#expandButtonIngredients {
    display: none;
}

#expandButtonKitchenStuff {
    display: none;
}

#expandButtonSteps {
    display: none;
}

button {
    color: #141414;
    border-style: none;
    background-color: #FDF9F5;
}

.TitelButton {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



/*            MEDIA QUERIES             */

/*            MEDIUM SCHERM         */

@media (min-width:738px) {



    /*                                           BODY & MAIN                                     */
    html {
        overflow-y: overlay;
    }

    main {
        display: flex;
        flex-direction: row;
        text-decoration: none;
        position: absolute;
    }

    .RecipePhotoSectionPhone {
        display: none;
    }

    .RecipePhotoSection {
        display: flex;
        align-content: center;
        align-items: center;
        height: 100%;
        position: static;
    }

    .RecipePhoto {
        width: 90%;
        max-height: 500px;
        height: 90%;
        max-height: 500px;
        object-fit: contain;
        margin-left: 5%;
        margin-right: 5%;
    }

    .full-height {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
    }

    .Recipe {
        display: flex;
        justify-content: flex-end;
        border-right: 1px solid #000000;
        overflow: auto;
        height: auto;
    }

    .Text{
        display: flex;
        align-content: space-between;
        overflow: auto
    }
    .Intro{
        max-width: 30em;
        top: 0;
        align-self: flex-start;
        padding-left:5%
    }


    .IngredientsParent {
        padding-left: 5%;
    }

    .UtensilsParent {
        padding-left: 5%;
    }

    .Steps {
        padding-left: 5%;
    }
}
