@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

img.food{
    height: 400px;
    margin-left: 100px;
}

iframe.map{
    width: auto;
    height: auto;
}

.grid1{
    margin: 80px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 30px;
    align-items: center;
}

.grid1 > article{
    border:none;
    box-shadow: 2px 2px 6px 0 rgba(0,0,0, 0.3);
    border-radius: 20px;
    text-align: center;
    width: 350px;
    height: 300px;
}
.grid1 p{
    margin-top: 20%;
}

@media (max-width:768px){
    .grid1{
        grid-template-columns: repeat(1,1fr);
    }
    
}

@media screen and (min-width: 576px){
    .grid1{
        grid-template-columns: repeat(1,1fr);
    }
    .grid1 > article{
        text-align: center;
    }
    .co
}

