body{
    background-color: #f9f7fe;
    font-family: Arial, Helvetica, sans-serif;

}

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

}

header{
margin-bottom: 30px;

}

a{
    color: #e98290;
}

h1{
    font-weight: 800;
    text-align: center;
    font-size: 38px;
    line-height: 1.5;
    color: #1f0909e8;
}
form{
    padding: 32px;
    background-color: #d7d4f5a6 ;
    border-radius: 18px;
    display: flex;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.2);
    
}
.instructions{
    padding: 16px;
    border: 1px solid #272101; 
    width: 88%;
    font-size: 18px;
    border-radius: 50px;
    line-height: 20px;

}

.submit-button{
    margin-left: 10px;
    background-color:#e98290;
    border: none;
    padding: 24px;
    border-radius: 50px;
    width: 140px;
    font-size: 16px;
color: white;
}

.submit-button:hover{

color: black;
background-color:#ec586c ;
}
.recipe{

    font-size: 16px;
    background-color: white;
    padding: 24px;
    margin: 20px;
    line-height: 1.6;
    border-left: 3px solid #89a3f8;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.2);
}

 .hidden{
    display: none;
 }
footer{
    margin: 30px auto;
    text-align: center;
    font-size: 15px;
}

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

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

    }
}

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

}