body{
    background-color: rgba(241, 245, 242, 0.751);
    text-align: center;
    font-family:Arial, Helvetica, sans-serif
}
.container {
    margin: 120px auto;
    max-width: 600px;

}
header{
    margin-bottom: 30px;
    
}
a{
    color:  rgb(16, 86, 23);
}

h1{
    text-align: center;
    font-weight: 800;
    font-size: 50px;
    line-height: 2;
    color: #01310d;
    font-display: auto;

}
form{
    display:flex;
    
}
.form-container{
    box-shadow: 0px 50px 60pc rgb(22, 210, 44);
    margin-bottom: 30px; 
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    text-align: left;
}
.hint{
    line-height: 1.5;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.6;
}
.instructions{
    padding: 10px;
    border: 1px solid #8e8a8a;
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height:  20px;
    color: rgb(16, 86, 23)

}
.submit-button{
    margin-left:60px ;
    background: rgb(16, 86, 23);
    color: white;
    border: none;
    width : 150px;
    font-size: 14px;
    border-radius: 50px;
    padding: 14px 24px;
    box-shadow: 0px 20px 60pc rgb(16, 86, 23);
    
}
.hidden{
    display: none;
}
.recipe{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: white;
    padding: 20px;
    line-height:2 ;
    border-left: 5px solid  rgb(16, 86, 23);;
    box-shadow: 0px 20px 60pc rgb(16, 86, 23);
    

}
.recipe strong{
    color:  rgb(16, 86, 23);
}
footer{
    text-align: center;
    font-size: 13 px;
    margin-top: 30px;

}
.generating {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

