body{
    background: #1E1E1E;
}

.container-banner{
    margin-top: -10px;
    height: 100vh;
    width: 100%;
    background-image: url('../img/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.title-header{
    padding: 20px;
    color: white;
}

.main-menu{
    background-color: #1E1E1E;
    height: 100%;
    margin-top: -10px;
}

.title-menu{
    color: white;
    width: 26%;  
    padding-top: 1em;
    padding-left: 4%;
    padding-bottom: 7px;
    border-bottom: #FFDE59 1px solid;
}

.container-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    margin-top: 2em;
    padding-bottom: 60px;
    padding-top: 20px;
    border-bottom: #FFDE59 1px solid;
}

.no-border{
    border-bottom: none;
}

.tftable{
    width: 48%;
    height: 100%;
}

.plat{
    color: white;
    width: 50%;
    font-size: 1.2em;
    padding-top: 20px;
    padding-left: 10%;
}

.title-plat{
    font-size: 1.3em;
}

.prix{
    color: white;
    width: 50%;
    padding-left: 10px;
    font-size: 1.2em;
    padding-top: 20px;
    padding-left: 10%;
}

.container-card-menu{
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: 60vh;
    margin-top: 7em;
}

.card-menu{
    margin-left: 40px;
    width: 25%;
    height: 100%;
    border-radius: 10px;
    background: #212121;
    box-shadow: 10px 10px 30px rgb(25, 25, 25),
    -10px -10px 30px rgb(60, 60, 60);
    position: relative;
}

.price-card-menu{
    position: absolute;
    left: -15px;
    top: -20px;
    font-size: 1.7em;
    color: #FFDE59;
}

.title-card-menu{
    text-align: center;
    color: white;
    font-size: 1.4em;
    padding-top: 12px;
    padding-bottom: 10px;
    border-bottom: #FFDE59 1px solid;
}

.list-card-menu{
    margin-top: 35px;
}

.list-card-menu li{
    margin: 10px;
    font-size: 1.2em;
    color: white;
}

.footer{
    border-top: white 1px solid;
    background: #1E1E1E;
    margin-top: 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

iframe{
    margin-top: 20px;
    margin-bottom: 10px;
    width: 450px;
    height: 300px;-
}

.copy{
    font-size: 1.4em;
    color: white;
}

/* Vos styles pour les smartphones en mode portrait ici */
@media (max-width: 767px) {
    .container-banner{
        background-image: url('../img/banner2.jpg');
    }

    .title-menu{
        width: 70%;
        padding-left: 10%;
    }

    .container-menu{
        align-items: center;
        flex-direction: column;
        height: auto;
        padding-top: 0px;
       
    }

    .tftable{
        margin-top: 20px;
        width: 100%;
        height: 50%;
        
    }

    .prix{
        font-size: 1em;
        padding-left: 10%;
    }

    .plat{
        font-size: 1em;
        padding-left: 10%;
    }

    .container-card-menu{
        flex-direction: column;
        height: auto;
        margin-top: 4em;
    }

    .card-menu{
        margin-left: 20px;
        margin-top: 30px;
        width: 90%;
        height: auto;
        box-shadow: 5px 5px 20px rgb(25, 25, 25),
        -5px -5px 20px rgb(60, 60, 60);
    }

    iframe{
        width: 300px;
        height: 200px;
    }
}