.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.pizza-card {
width: 80%;
border: 1px solid #ccc;
margin: 20px;
text-align: center;
}
.pizza-name {
font-size: 24px;
font-weight: bold;
margin: 20px;
}
.pizza-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.pizza-description {
margin: 20px;
font-size: 18px;
}
.order-btn {
background-color: #f44336;
color: #fff;
padding: 10px 20px;
border-radius: 20px;
margin: 20px;
font-size: 18px;
cursor: pointer;
}
Margherita Pizza
Tomato sauce, mozzarella cheese, and fresh basil
Order Now
Pepperoni Pizza
Tomato sauce, mozzarella cheese, and pepperoni
Order Now
Veggie Pizza
Tomato sauce, mozzarella cheese, and a variety of vegetables
Order Now
Hawaiian Pizza
Tomato sauce, mozzarella cheese, ham, and pineapple
Order Now
<div class=”pizza