body{
    background-color: #f9f7fe;
}

.container{
    margin: 120px auto;
    max-width:600px ;
}

a{
    color:  rgb(89, 167, 167);
}

h1{
    font-weight: 800px;
    font-size: 36px;
    line-height: 1.5;
    color: #272044;
}

header{
    margin-bottom: 30px;
}

.form-container{
    padding: 30px;
    background-color: white;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08); 
    border-radius: 10px;
    margin-bottom: 10px;

}

form{
   
    display: flex;
}

.hint{
    opacity: 0.6;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
}

.ing-input{
    padding: 15px;
    border-radius: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #272044;
}

.sub-button{
    margin-left: 10px;
    background-color: rgb(89, 167, 167);
    color: white;
    border: none;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    padding: 14px 24px;
}

.recipe{
    font-size: 16px;
    background-color: white;
    line-height: 1.5;
    padding: 20px;
    border-left: 3px solid  rgb(89, 167, 167);
    box-shadow:0px 4px 30px 0 rgba(65, 50, 100, 0.08); ;
}
.hidden{
    display: none;
}

.recipe strong{
    color:rgb(89, 167, 167) ;
}

footer{
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
}

@keyframes blink {
    50% {
      opacity: 0.0;
    }
  }
  .blink {
    animation: blink 1s step-start 0s infinite;
  }