* {
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
}

main {
    margin: 20px;
}

h1, h2, h3 {
    font-family: "Archivo Black", cursive;
    color: #18459C;
}

h1, h2 {
    margin: 50px 30px 20px 30px;
}

p, ul, table {
    font-family: Lora, "Times New Roman", serif;
    font-size: 20px;
}

p, ul {
    margin: 5px 30px 30px 30px;
}


header {
    background-color: #18459C;
    box-shadow: 5px 5px 5px #5d5d5d;
    display: flex;
}

.logoHeader {
    max-height: 115px;
    padding: 10px 10px 10px 10px;
}

.burger {
    width: auto;
    height: 110px;
    margin: 10px;
}

.menu {
    display: none;
}

.menu.active {
    display: block;
}

footer {
    background-color: #1a3a8f;
    text-align: center;
    padding: 20px 0 0 0;
    overflow: hidden;
    color: #FFFFFF;
}

footer p {
    color: white;
    font-family: serif;
    margin-bottom: 15px;
}

.footer-biscuits {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -50px;
}

.biscuit-footer {
    width: 120px;
    margin-bottom: -65px;
}

html, body {
    height: 100%;
}

.contact {
    margin-bottom: 50px;
    margin-top: 0;
}

.reseaux {
    max-width: 50px;

}

#container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

/* ITEM SÉLECTIONNÉ (Item 1) */
#container .item:nth-child(1) {
    order: 0;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    min-width: 70px;
    font-size: 16px;
}

table {
   margin-left: 30px;
    margin-bottom: 50px;
}

.title-box {
    font-family: Lora, "Times New Roman", serif;
    font-size: 20px;
    color: white;
    margin: 0  0 5px 30px;
}

.produit img {
    width: 90%;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}

.produit {
    border-radius: 4px;
    padding: 5px;
    width: calc(33% - 24px);
    background-color: #8396BA;
    color: white;
    margin: 0 0 20px 0;
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.container {
    flex: 0 0 calc(33.333% - 14px);
}

@media (max-width: 768px) {
    .produit {
        width: 100%;
    }
}
