body {
    background-color: black;
    font-family: "Anton", sans-serif;
    margin: 0;
}

header {
    background-color: #FAC710;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a{
    color: white;
}

.imgFoodTruck{
    display: flex;
    justify-content: center;
}

.bodyContent_tittle {
    width: 100%;
    height: 100%;
    color: black;
    font-size: 28px;
}

.bodyContent{
    color: white;
    margin-top: 100px;
}

.primaryDish{
    width: 100%;
    text-align: center;
    color: #FAC710;
    font-size: 24px;
    margin-block: 30px;
}

.bodyDishProtein{
    width: 100%;
    text-align: center;
    color: #FAC710;
}

.bodyDishHidrate{
    width: 100%;
    text-align: center;
    color: #FAC710;
}

.bodyDishProtein h2{
    font-weight: normal;
    font-size: 22px;
    margin-block: 5px;
}

.bodyDishHidrate h2{
    font-weight: normal;
    font-size: 22px;
    margin-block: 5px;
}

.bodyDish_box_protein{
    display: flex;
    flex-wrap: wrap ;
}
.protein_item{
    flex-basis: 100%;
    color: white;
    font-size: 17px;
}
.bodyDish_box_hidrate{
    display: flex;
    flex-wrap: wrap ;
}
.hidrate_item{
    flex-basis: 100%;
    color: white;
    font-size: 17px;
}

.price_box{
    color: #FAC710;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

@media (min-width: 1000px) {
    
    .primaryDish{
        font-size: 28px;
    }

    .bodyDishProtein h2{
        font-size: 24px;
    }
  
    .protein_item{
        font-size: 22px;
    }

    .bodyDishHidrate h2{
        font-size: 24px;
    }

    .hidrate_item{
        font-size: 22px;
    }
  }