    *{
    margin: 0;
    padding: 0;
    font-family: 'roboto condensed', sans-serif;
    }

    body{
        height: 100%;
    }
    #carrousel{
        width: 800px;
        height: 450px;
        border: solid 4px #fff;
        box-shadow: 0 0 14px rgba(0,0,0,0.3);
        position: center;
        overflow: hidden;
    }

    #container{
        width: 800px;
        height: 450px;

    }

    .photo{
        width: 800px;
        height: 450px;
        margin: 0;
        display: inline-block;
        background-size: cover;

    }

    .bouton{
        position: absolute;
        width: 70px;
        cursor: pointer;
        top: 500px;
    }

    #g{
        left: 100px;
        opacity: 0.4;
        transform: rotate(180deg);
        transition: all 0.3s ease;
    }

    #d{
        right: 1015px;
        opacity: 0.4;
        transform: rotate(0deg);
        transition: all 0.3s ease;
    }

    #g:hover{
        transform:rotate(180deg) scale(1.1);
        opacity: 1;
    }

    #d:hover{
        transform:rotate(0deg) scale(1.1);
        opacity: 1;
    }

    .navbar{
        padding: 20px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0%;
        z-index: 999;
        background-color: black;
    }

    .navbar .logo h1 {
        color: white;
        cursor: pointer;
    }

    .navbar .menu li {
        list-style: none;
        display: inline-block;

    }

    .navbar .menu li a {
        display: block;
        margin-left: 20px;
        color: white;
        border-bottom: 4px solid transparent;
        text-decoration: none;
        font-size: 15px;
        font-weight:bold;

    }

    .navbar .menu li .active a {
        border-bottom: 4px solid red;
    }

    .navbar .menu li .a:hover{
        border-bottom:4px solid red;
    }

    .content{
        background-image: url('font.jpg');
        background-size: cover;
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        color: darkslategray;
        height: 100vh;
    }
    .content h1{
        font-size: 40px;
    }

    .content p {
        font-size: 20px;
        margin-top: 20px;
    }

    .content button {
        margin-top:30px;
        padding: 15px 30px;
        border: none;
        background: #f63e4e;
        color: white;
        border-radius: 5px;
        cursor: pointer;
    }
    .produit-text{
        text-align: left;
        font-size: 30px;
        font-weight: 300;
        margin-top:  30px;
        margin-left: 80px;
        color: #424144;

    }

    .section-produits{
        padding: 40px 5%;
    }

    .produit{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .produit .carte{
        width: 300px;
        background: #f5f5f5;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .produit .carte img{
        height: 250px;
        width: 100%;
    }

    .produit .carte .desc{
        padding: 5px 20px;
        opacity: 0.8;
    }

    .produit .carte .titre{
        font-weight: 900;
        font-size: 20px;
        color: #424144;
        padding: 0 20px;
    }

    .produit .carte .box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }

    .produit .carte .prix{
        color: #f63e4e;
        font-size: 20px;
        font-weight: bold;
    }

    .produit .carte .acha{
        font-size: 13px;
        font-weight: 900;
        color: #f63e4e;
        padding: 10px 18px;
        border-radius: 5px;
    }

    .produit .carte .acha:hover{
        cursor: pointer;
        background: black;
        color: white;
        
        
    }

    #compteur-panier {
        background: red;
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 12px;
        position: absolute;
        top: -5px;
        right: -10px;
        display: none;
}





    