
@import url('https://fonts.googleapis.com/css2?family=Cherry+Swash:wght@400;700&display=swap');


body{
    background-image: url("https: //s3.amazonaws.com/shecodesio-production/uploads/files/000/157/399/original/fall-background-with-space-for-text-picjumbo-com.jpeg?1739393073");
    font-family: "Cherry Swash", serif;
    
    
   
}
h1{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.5;
    color: #b8adec;
    text-align: center;
}
.container{
    margin: 120px auto;
    max-width: 600px;

}
.form-container{
    box-shadow: 0px 20px 60px rgba(65, 50, 180, 0.08);
    margin-bottom: 30px;
    border-right: 3px solid  #1e0484;
    padding: 15px 20px;
    background-color: #f3eded;
    border-radius: 10px;
}
form{
    display: flex;
}
.hint{
    line-height: 1.5;
    margin-top: 5px;
    opacity: 0.6;
    font-size: 12px;
}
.instructions{
    padding: 16px;
    border: 1px solid rgba(225, 225, 225, 0.9);
    font-size: 16px;
    width: 80%;
    border-radius: 58px;
    line-height: 20px;
    color: #272044;
}
.submit-button{
    padding: 14px 24px;
    border-radius: 58px;
    margin-left: 10px;
    border: none;
    color: #fff;
    background-color: #1e0484;
    width: 150px;

}
.poem{
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0px 4px 30px 8px rgba(39, 33, 66, 0.03);
    border-left: 3px solid  #1e0484
 
}
.hidden{
    display:none;
}
.poem strong{
   color: #b8adec;
}
footer{
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    font-family:'Courier New', Courier, monospace;
    color: rgb(227, 227, 218);

}
a{
    color:#b8adec;
}
@keyframes blink {
    50%{
        opacity: 0;
    }
}
.blink {
    animation: blink 1s step-start 0s infinite;
}