header{
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

main{
    display: flex;
    justify-content: center;
}

#ingredients {
    padding: 10px;
    border: 1px solid #020705;
    border-radius: 4px;
    width: 400px;
    margin-right: 5px;
    font-size: 16px;
}

button {
    padding: 10px;
    border: 1px solid #020705;
    border-radius: 4px;
    width: 150px;
    margin-right: 5px;
    font-size: 16px;
    background-color: #000;
    color: #fff
}

body {
    font-family: "Gill Sans", sans-serif;
    background-image: url("https://images.unsplash.com/photo-1690983322857-0811d47fedfc?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8Y29va2luZyUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120%; 
   
}

footer {
    text-align: center;
    padding: 12px;
    color: white;
    margin-top: 40px;
}

#container {
    backdrop-filter: blur(3px);
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    margin: 30px auto;
    padding: 50px 20px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a{
    text-decoration: none;
    color: black;
}

#recipe-output {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-left: 4px solid #020705;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    width: 90%;
    
    
}

#recipe-output ul {
  list-style-type: none;  
  padding-left: 0;        
}