body {
  font-family: "Roboto", sans-serif;
  background-color: whitesmoke;
  background-image: url("../images/Stairs.jpg");
  background-repeat: no-repeat;
  background-size:100% 100%;
background-position: center;
 
}

.container{

margin: 100px auto;
max-width: 600px;
background: rgba(255, 255, 255, 0.7);
padding: 30px;
border-radius: 10px;
box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);


}

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



form{
   
    display:flex;
    border-radius: 4px;

}
.instruction-container{

     padding: 10px;    
    width: 100%;
}

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

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

.search-button{
 border-radius: 50px;
    padding: 15px;   
    font-size: 16px;
    line-height: 20px;
    color: white;
    background-color: black;
    margin-left: 20px;
     margin-right: 20px;
   
}
.poem{
     display: block;
 font-size: 16px;
  background-color: #fff;
  padding: 20px;
  line-height: 2;
  border-left: 3px solid black;
  box-shadow: 0px 4px 30px 0px rgba(39, 33, 66, 0.03);
}

.hidden{
    display: none;
}


footer{
    font-size: 12px;
    text-align: center;
}

a{
    font-weight: bolder;
    color:black;
}

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

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