/* 
Recipe Creator
*/

form#creator-recipe {
    position: absolute;
    top: 75px;
    left: 20vw;
    width: 300px;
    max-width: 40vw;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media only screen and (max-width: 900px) {
    form#creator-recipe {left: 35vw;
    }}


.listRecipe{
    position: absolute;
    top: 40vh;
    left: 50vw;
    height: auto;
    width: 40vw;
    padding: 20px;
    font-size: 0.8rem;
}

@media only screen and (max-width: 900px) {
    .listRecipe {
        top: 80vh;
        left: 30vw;
    }}


textarea#text5 {
    height: 100;
}

