* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.bière {
    img {
        width: 10px;
    }
}

.test {
    background-color: #f00797;
}

header {
    background-color: #E6501B;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 100px auto;
    justify-content: center;
    align-items: center;


    .recherche {
        display: grid;
        grid-row-start: 1;
        grid-column-start: 3;
        grid-column-end: 4;


        form {
            display: flex;
            margin-left: 20%;

            placeholder {
                text-align: center;
            }

            .recherche {
                /* height: 60px;
            border: solid 10px #740A03;
            border-radius: 10px; */
                height: 50px;
                background-color: #740A03;
                border-radius: 10px;
                border: solid 3px white;
            }


        }
    }



}


main {

    height: 1200px;
    background-image: url('../images/Motif_Charte_Graphique.png');

    /* Couvre tout l'élément sans déformation */
    background-size: cover;

    /* Centre l'image */
    background-position: center;

    /* Empêche la répétition */
    background-repeat: no-repeat;

    /* L'image reste fixe au scroll */
    background-attachment: fixed;

    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 100px 1fr 1fr; */
    text-align: center;
    margin: auto;

    .image_bière_list {
  display: block;
  border-radius: 10px;
  border: solid rgb(0, 0, 0) 5px;
  width: 100%;
  max-width: 300px; /* une valeur plus grande qu'avant */
  height: auto;
    }

    .home_bière_list {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  margin: 0;

    }

    .element_list {
        /* text-align: center;
        width: 21%;
        display: inline-block;
        margin: 0.5%;
        vertical-align: middle; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

        a {
            margin-top: 8px;
            text-align: center;
            color: white;
            text-decoration: none;

        }
        a:hover{
            color: #b2b2b2;
        }

    }

    .titre_page {
        padding-top: 2%;
        color: white;
    }
}

.deco_header {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    margin-bottom: -10px;
    width: 100%;
    height: 20px;
    /* hauteur fixe peu importe l'écran */
    object-fit: cover;
    /* l'image remplit sans se déformer, elle se "coupe" sur les côtés */
    object-position: center;
    /* centre le crop */
    /* z-index: 100; */
}

nav {
    padding: 10px;

    ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;




        li {
            padding: 0 25px;
        }
    }
}




.logo {
    margin: 10px;
    /* margin-right: 100px; */
    width: 25%;
}

footer {
    padding: 10px;
    background-color: #280905;
    color: rgb(255, 255, 255);
    text-align: center;

    div {
        padding: 10px;
    }

    .mention {
        background-color: #740A03;
    }
}



.logo_footer {
    width: 7%;
}

.reseau {
    width: 40px;
}