background {
   
    font-family:  Helvetica,Arial, sans-serif;
}
body {
        background-image: url(https://www.shutterstock.com/image-vector/random-repeated-arabic-calligraphy-letters-600nw-2342492371.jpg);
       
        background-size: cover;
      }

a {
  color: #7B87A3;
}



header {
margin-bottom: 30px;

}

.container {

    margin : 120px auto;
    max-width: 600px;
    background: silver;
    padding: 30px;
    border-radius: 10px;
    color: black;
    


}

h1 {
   
    color : #272044;
   font-size: 16px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 800;
    font-size: 40px;
    line-height: 1.3;
}

.form-container {
  box-shadow: 20px 20px 60px rgba(65, 50, 100, 0.08);
   margin-bottom: 30px;
  
}


form {  
  display: flex;
}


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

}

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

.submit-button {
margin-left: 10px;
background: black;
color: white;
border: none;
width: 120px;
font-size: 15px;
font-family:'Fira Code', 'JetBrains Mono', monospace; ;
border-radius: 30px ;
padding: 14px 24px;
}



.poem {
    font-size: 16px;
    background-color: #fff;
    padding: 20px;
   
    line-height: 2;
    border-right: 3px solid black;
    box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
    border-radius: 10px;
    font-family:'Amiri', serif; 
    text-align: right;
    margin-top: 30px;
}

.hidden {
  display: none;
}
.poem strong {

  color: grey;
  
}



footer  {
    text-align: center;
    font-size: 10px;
    margin-top: 30px;
    font-family: 'Fira Code', 'JetBrains Mono', monospace; ;;
}


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

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