/*                                           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                                   */
.AboutText {
    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;
    align-items: flex-start;
    flex-direction: column;
    padding-left:5%;
    padding-right:5%;
    max-width: 35em;
}



/*                                                Photo                                   */


.AboutPhotoSection {
    display: none;

}

.AboutPhotoSectionPhone {
    display: flex;
    justify-content: center;
    width:100%;
    height: auto;
    left: 0;
    right: 0;
    margin-top: 2em;
    margin-bottom: 2em;
}

.AboutPhotoPhone{
    width: 50%;
    max-width: 20em;
}

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

}

.AboutPhoto {
    width: 100%;
    object-fit: cover;
    left: 0;
    right: 0;
}






/*            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;
    }

    .Text{
        padding-left:5%;
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        justify-items: flex-start;
        top: 0;
        left: 0;
        bottom: 0;
    }

    .AboutText{
        justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        justify-items: flex-start;
        border-right: 0.5px solid #000000;
        overflow: auto;
        height: auto;
        top: 0;
        left: 0;
        bottom: 0;

    }

    .AboutPhotoSectionPhone {
        display: none;
    }

    .AboutPhotoSection {
        display: flex;
        align-content: center;
        align-items: center;
        height: 100%;
        position: static;
        border-left: 0.5px solid #000000;
    }

    .AboutPhoto {
        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;
    }

    .AboutText {
        display: flex;
        justify-content: center;
    }

    .Text{
        display: flex;
        align-content: space-between;
        overflow: auto
    }

