@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Rowdies:wght@300;400;700&display=swap');

body{
    margin: 0;
    background: rgb(4,2,46);
    background: linear-gradient(90deg, rgba(4,2,46,1) 100%, rgba(89,29,184,1) 100%); 
    font-family: "Poppins", sans-serif;
    
}

#flexcointener{
    display: flex;
    flex-wrap: wrap;
}

h1{
    text-align: center;
    color: white;
    font-family: "Rowdies", cursive;
}

.fooditem{
    border: 1px solid lightgrey;
    padding: 15px;
    margin: 15px;
    width: 350px;
    background-color: white;
    border-radius: 15px;
}
img{
    height: 200px;
    border-radius: 10px;
    object-position: center;
}

small{
    font-size:large;
}

button{
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    transition: 0.5s;
}