#recetteContainer{
    align-items: center;

    height: 70vh;

    margin: 10px;
    margin-bottom: -5px;

    border: solid 1px var(--bordercolorRecette);
    background-color: var(--backgroundColorRecette);

    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-color: var(--backgroundColor) rgba(0, 0, 0, 0);
    scrollbar-arrow-color: rgba(0, 0, 0, 0);
}

#recettePictureText{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 10px;
}

#recetteTitle{
    margin-top: 10px;

    font-size: 3vh;
    justify-self: center;
}

#recetteText{
    max-width: 55vh;
    width: 76vw ;

    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 20px;
    padding-bottom: 20px;

    background-color: var(--backgroundColorRecetteText);

    text-align: center;

    border: solid 1px var(--bordercolorRecette);
    border-radius: 10px;

    font-size: 2vh;
    color: var(--secondaryfontColor);
}

#recetteText2{

    max-width: 55vh;
    width: 76vw ;

    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 20px;
    padding-bottom: 20px;

    background-color: var(--backgroundColorRecetteText);


    border: solid 1px var(--bordercolorRecette);
    border-radius: 10px;

    font-size: 2vh;
    color: var(--secondaryfontColor);
}

#recetteImage{
    aspect-ratio: 1/1;
    object-fit: cover;

    max-width: 55vh;
    width: 80vw ;

    margin-bottom: 2vh;
    /*margin-right: 2vh;*/

    border-radius: 10px;
}

#vegetablelink{
    color: #2929c5;
}

#vegetablelink:hover{
    color: blue;
    font-weight: bold;
}

#liRecette{
    margin-bottom: 10px;
}

pre{
    white-space: pre-wrap;
    text-align: start;
    margin-left: 50px;
    margin-right: 50px;
    font-family: var(--primaryfontFamily);
    font-size: 2vh;
}

@media screen and (max-width: 1200px) {

    #recetteText2{
        text-align: center;
    }
}

@media screen and (min-width: 930px) {

    #recetteImage{
        margin-right: 2vw;
    }
}