html{
    font-family: 'Times New Roman', Times, serif;
    background: #43cea2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #185a9d, #43cea2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #185a9d, #43cea2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
header{
    background-image: linear-gradient(#141E30,#243B55);
}
header div{
    width:50%;
    display: flex;
    justify-content: space-evenly;
    color:white;
    
}
a{
    text-decoration: none;
    color: white;
}
img{
    width:100%;
    height: 100%;
}


#take-ip{
    text-align: center;
}
input{
    margin-top: 10px;
    border-style: none;
    font-size: 1rem;
    width:50%;
    height:2.2rem;
    border-radius: 1rem;
}
#search-btn{
    border-style: none;
    height:2.2rem;
    font-size: 1rem;
    border-radius: 1rem;
}
#meals-list{
    margin: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
li{
    list-style: none;
    padding: 10px;
    
    width:25%;
}
.meal h2{
    text-align: center;
    margin-left: 35px;
    cursor: pointer;
}
li img{
    margin-left:30px;
    height: 200px;
    width:200px;
    border: 1px solid lightgray;
}
.meal-name{
    display: flex;
    
}
.meal-name i{
    font-size: 1.5rem;
    margin-top:17px;
    margin-left: 15px;
    cursor: pointer;
}

.fas{
    color:red;
}

@media screen and (max-width:900px){
    li{
        width:45%;
        margin-bottom: 5px;
    }
}

@media screen and (max-width:600px){
    li{
        width:75%;
        margin-bottom: 5px;
        margin-left: 30px;
    }
    header div{
        width:100%;
    }
    #meals-list{
        margin: 30px;
        display: flex;     
    }
}

@media screen and (max-width:400px){
    #meals-list{
        margin: 0px;    
    }
    li{
        margin:0px;
        margin-bottom:10px ;
    }
    header div{
        display: block;
        width:70%;
        margin-left:auto;
        height:130px;
    }
    input{
        width:80%;
        margin-top:35px;
        margin-bottom: 15px;
    }
}
