/* https://coolors.co/e8a062-823922-00a24b-fdc032-b90014 */


/*****************************************
 REGLES GENERALES
******************************************/

* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.4;
    color: black;
    background-color: white;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}

a {
    color: #00a24b;
    text-decoration: none;
}

a:hover {
    color: #E8A062;
}

h1,
h2 {
    font-family: Georgia, serif;
}

h1 {
    color: #FDC032;
    font-size: 4rem;
    line-height: .9;
}

h2 {
    font-size: 2.5rem;
    margin: 60px 0 20px;
}

p {
    line-height: 1.5;
}


/*****************************************
 ENTETE DU SITE
******************************************/

header {
    text-align: center;
    background-color: #000;
    padding: 10px;
}

header img {
    max-height: 160px;
}

/*****************************************
 CONTENU PRINCIPAL DU SITE
******************************************/
main {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}



main p.intro {
    font-size: 1.3rem;
    font-style: italic;
    text-transform: uppercase;
}

main ul.ingredients {
    max-width: 95%;
    margin: 40px auto;
    padding: 0;
    list-style-type: none;
}

main .ingredients li {
    color: white;
    padding: 10px 40px;
    background-color: #E8A062;
}

main .ingredients li:nth-child(even) {
    border-top: 5px solid #FDC032;
    background-color: #823922;
    border-bottom: 10px solid #00A24B;
}

main .ingredients li:first-child {
    border-radius: 30px 30px 0 0;
}

main .ingredients li:last-child {
    background-color: #E8A062;
    border-radius: 0 0 30px 30px;
    border: none;
}

/*****************************************
 PIED DE PAGE DU SITE
******************************************/

footer {
    background-color: #823922;
    color: white;
    padding: 10px;
    margin: 20px auto 40px;
    text-align: center;
    max-width: 400px;
    min-height: 50px;
    border-top: 30px solid #E8A062;
    border-bottom: 30px solid #E8A062;
    border-radius: 30px;



}
