body{
    background-color: aliceblue;
font-family:Arial, Helvetica, sans-serif;
}

a{
    color: rgb(120, 155, 251);
}

h1{
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: black;
    text-align: center;
}

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

header{
    margin-bottom: 30px;
}

form{
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    display: flex;
}

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

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

.prompt{
padding: 16px;
border: 1px solid rgb(9, 22, 144);
width:80%;
font-size: 16px;
border-radius: 50px;
line-height: 20px;
color:rgb(20, 20, 17);
}

.submit-button{
    margin-left: 10px;
    color: white;
    background: rgb(9, 22, 144);
    border: none;
    border-radius: 50px;
    width: 150px;
    font-size: 16px;
    padding: 14px 24px;
    cursor: pointer;
}

.poem{
    font-size: 16px;
    background-color: white;
    padding: 26px;
    margin-top: 40px;
    line-height: 1.5;
    border-left: 3px solid blue;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
   color:black;
}

.poem strong{
    color: rgb(9, 22, 144);
}

.hidden{
    display: block;
}


footer{
    text-align: center;
    font-size: 18px;
    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;
  }
}
