#divReturnMenu{
    display: flex;
    justify-content: end;
    z-index: 15;

    position: fixed;

    width: 100%;
    /*height: 0;*/
    bottom: 0;

    margin-left: -5%;
}

#returnMenuBtn{
    position: relative;

    text-align: center;
    align-content: center;

    width: 18vh;
    height: 6vh;

    top: -10vh;

    font-size: 2vh;

    background-color: var(--buttonColor);

    border: solid 1px var(--bordercolorRecette);
    border-radius: 5px;

    font-family: var(--primaryfontFamily);
    color: var(--primaryfontColor);

    cursor: pointer;
}

#returnMenuBtn:hover{
    border: 2px solid black;
    background-color: var(--buttonHoverColor);
}