body {
    background-color: #ffffff;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: "texte";
    src: url(fonts/Rounded_Elegance.ttf);
}

@font-face {
    font-family: "price";
    src: url(fonts/built_tiling.ttf);
}


.flexCentre {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spacer {
    clear: both;
}

.grandTitre {
    font-family: grandTitre;
    font-size: 6em;
    text-align: center;
    font-weight: normal;
}

.mainMenu {
    display: flex;
    justify-content: center;
}

.contProduct {
    text-align: center;
    /*border: solid 1px #bcbcbc;*/
    width: 33%;
    margin: 5px;
}

.productPic img{
    border: solid 4px #d11b1b;
    transform: rotate(4deg);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.46);
}

.contPhotoAndDesc {
    /*display: flex;*/
}

.prodLocaux {
    font-family: price;
    background-color: #517212;
    color: #ffffff;
    /*float:right;*/
    letter-spacing: 0.2em;
    padding: 0.3em 0.5em;
    transform: rotate(4deg);
    border-radius: 1em;
    display: inline-block;
}

.productName {
    font-family: texte;
    color: rgba(92, 53, 29, 0.66);
}

.productDesc {
    font-family: texte;
    color: #5c351d;
}

.price {
    font-family: price;
    color: #123f65;
    font-size: 2.5em;
    background-color: #913923;
    color: #fafafa;
    padding: 0.1em;
    border-radius: 0em 0em 0.2em 0.2em
}

.price .priceNote {
    font-size: 0.5em !important;
}

.boissonFiche {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 33%;
    margin: 0px auto;
    border-bottom: solid 1px #dddddd;
}

.boissonDesc {
    margin-right: 2em;
    text-align: right;
}

/*---------*/

#menuH {
    display: flex;
    justify-content: flex-start;
    position: fixed;
    z-index: 100;
}

@keyframes menuOn {
    0% {
        transform: scale(1.0);
        z-index: 1000;
    }
    100% {
        transform: scale(1.2);
        z-index: 1001;
    }
}

@keyframes menuOff {
    0% {
        transform: scale(1.2);
        z-index: 1001;
    }
    100% {
        transform: scale(1.0);
        z-index: 1000;
    }
}

.menuItem {
    font-family: price;
    margin: 0px 2px;
    padding: 0.5em 1em;
    border-radius: 0em 0em 1em 1em;
    border: solid 1px #ffffff;
    border-top:none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.42);
    animation-name: menuOff;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.menuItem:hover {
    animation-name: menuOn;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.menuItem:hover {
    transform: scale(1.2);
}

.menuItem a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2em;
}

#menu1 {
    background-color: #963316;
}

#menu2 {
    background-color: #7c3305;
}

#menu3 {
    background-color: #e37c15;
}

/*--------------*/

#footer {
    margin-top: 2em;
    background-color: #1f0a05;
    padding: 2em 0em;
    justify-content: center;
    box-shadow: 0px 0px 20px #000000;
    border-top: solid 1px #ffffff;
    display: flex;
    justify-content:flex-start;
    align-items: center;
}

@keyframes footerLogo {
    0% {
        filter: opacity(0.1);
    }
    
    50% {
        filter: opacity(0.2);
    }
    
    100% {
        filter: opacity(0.1);
    }
}

#footerLogo {
    animation-name: footerLogo;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

.footerLink a{
    font-family: price;
    color: rgba(255, 255, 255, 0.61);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.footerLink a:hover {
    text-decoration: underline;
    color: #708627;
}

.footerLink {
    list-style: none;
    margin-right: 1em;
}

/*--------------------------------------------*/

@media(max-width: 1023px) {
    
    #fakeSpaceTop {
        width: 32px;
        height: 4em;
    }
    
    .grandTitre {
        font-family: grandTitre;
        font-size: 3em !important;
        color: #963316;
    }

    .mainMenu {
        display: block;
    }

    .contProduct {
        text-align: center;
        /*border: solid 1px #bcbcbc;*/
        width: 100%;
        margin: 0px auto;
        padding-bottom: 1em;
        border-bottom: solid 0.3em rgba(209, 27, 27, 0.15);
    }

    .productPic img{
        border: solid 4px #d11b1b;
        transform: rotate(4deg);
        max-width: 70%;
    }

    .contPhotoAndDesc {
        /*display: flex;*/
    }

    .productName {
        font-family: texte;
        font-size: 1.3em;
    }

    .productDesc {
        font-family: texte;
        font-size: 1em;
    }

    .price {
        font-family: price;
        color: #123f65;
        font-size: 1.8em;
        background-color: #913923;
        color: #fafafa;
        padding: 0.1em;
    }
    
    .contBoisson {
        max-width: 100%;
    }
    
    .boissonFiche {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 90%;
        margin: 0px auto;
        border-bottom: solid 1px #dddddd;
    }

    .boissonDesc {
        margin-right: 2em;
        text-align: right;
    }
}