
body{
    background-image: url(https://images.unsplash.com/photo-1603631138845-cf5bfbf11e16?q=80&w=2795&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    min-height: 100vh;

}


h1 {
    font-size: 60px;
    color: #cb2121;
    font-family: "Pacifico", cursive;
    text-shadow: -3px -3px #fff;
    margin-top: auto;
    margin-bottom: auto;

}

h2 {
    font-size: 30px;
    color: #fff;
    text-shadow: -2px -3px #000000;
    margin-bottom: 0%;
    
}

.heading {
    display: flex;
    justify-content: center;
} 

.input-field {
    display: flex;
    justify-content: center;

}

#search {
    font-size: 15px;
    padding: 7px;
    width:40%;
    outline: none;
    
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.recipe{
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 20px;
    text-align: center;
}

p{
    font-size: 0;
}

img {
    border-radius: 50%;
}

  @media all and (max-width: 1180px){
    h1{
        font-size: 55px;
    }
  }

  @media all and (max-width: 807px){
    h1{
        font-size: 40px;
    }
   
  }

  @media all and (max-width: 510px){
    h1{
        font-size: 25px;
    }
    h2 {
        font-size: 15px;
    }

    img{
        width: 300px;   
        height: auto;
    }
    body {
        overflow-x: hidden;
    }
   
  }