body {
    display: flex;
    background-color: #D9D9D9;
    margin: 0;
    padding: 0;
    font-family: Calibri;
}

header {
    max-width: 260px;
    background: white;
    flex:1;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    width: 100%;
    padding: 0;
}

.hidden {
    display: none;
}

a{
    color:initial;
    text-decoration: none;
}

a:visited{
    color:initial;
}

a:hover{
    text-decoration: underline;
}

.container-base{
    flex:9;
    max-width: 1000px;
    height: 100vh;
    background: white;
    margin: 0;
}

.content{
    padding: 50px;
}

.menu {
    height: 50px;
    vertical-align: center;
    background-color: #e8cfab;
    color: black;
    font-weight: bold;
}

nav.menu ul {
    padding-top:10px ;
    display: flex;
    margin: 0;
    width: 100%;
    gap:50px;
}

nav.menu ul li {
    display: inline-block;
    list-style-type: none;
    font-size: 24px;
    font-weight: bold;
}

nav.menu .active{
    color: #D08600;
}

nav.recipes ul {
    width: 100%;
}

nav.recipes li {
    background: #0060B7;
    list-style-type: none;
    color: white;
    font-weight: bold;
    margin:5px 0;
    padding:5px 10px;
}

nav.recipes li a{
    color: white;
}

nav.recipes li.active{
    background: #DAC193;
}

nav.recipes li.active a{
    color:black;
}

nav.recipes li:hover{
    background: #DAC193;
}

nav a:hover{
    color: black !important;
    text-decoration: none;
}

.logo-box {
    min-width: 260px;
    padding: 10px;
    flex:1;
 background: #D08600;
}

.top-recette{
    font-size: 18px;
    color:white;
    float:right;
    width: auto;
    background: #D04900;
    padding: 7px 12px;
}

.recipe-content{
    padding: 20px 30px;
    background: whitesmoke;
    border-radius: 10px;
}

.recipe-content h1, .recipe-content h2{
    font-family: Lobster;
    margin: 0;
}

.recipe-content h1{
    font-size: 50px;
}

.recipe-content h2{
    font-size: 35px;
}

.ingredients{
    background: cornsilk;
    padding:20px;
    display:inline-block;
}