body{
    
   background-color: brown;
    font-family: "Helvetica", "Arial", sans-serif;

}
.container{
     background-image: url('./naijafoods.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 120px auto;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;

}
a{
    color: rgb(24, 18, 49);
}

h1{
    text-align: center;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.5;
    color:rgb(216, 187, 25); /* Adjusted for better contrast */
    background-color: rgba(0, 0, 0, 0.3) ;
    border-radius: 10px;

    
}
header{

    margin-bottom: 30px;
}
form{
    
    display: flex;
}
.instruction{
    padding: 16px;
    border: 1px solid rgb(39, 33, 66, 0.5);
    width: 80%;
    border-radius: 50px;
    font-size: 16px;
    line-height: 20px;
    color: rgb(24, 18, 49);
}
.submit-button{
  margin-left: 10px;
  background-color: brown;
  color: white;
  border: none;
  width: 150px;
  font-size: 14px;
  border-radius: 50px;
  padding: 14px 24px;
}
.form-container{
    padding: 20px;
    background-color: white;
    border-radius: 10px;
     box-shadow: 0 28px 60px rgba(65, 50, 100, 0.08);
    margin-bottom: 30px;
}

.hint{
    font-size: 10px;
   opacity: 0.5;
    margin-top: 5px;
    line-height: 1.5;

}
.recipe{
    font-weight: 400;
    padding: 20px;
    background-color: rgb(219, 191, 32);
    font-size: 16px;
    line-height: 2;
    border-left: 2px solid brown;
    border-radius: 10px;
    box-shadow: 0 4px 30px 0 rgba(39, 33, 66, 0.3);
}
.recipe strong{
    color: rgb(24, 18, 49);
    font-family: 'Courier New', Courier, monospace;
}
.hidden{
    display: none;
}
.blink {
  animation: blink-animation 1s steps(5, start) infinite;}

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

footer{
    text-align: center;
    font-size: 13px;
    color: rgb(253, 253, 253);
    margin-top: 30px;
}