body {
background-color: aliceblue;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

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

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

header{
margin-bottom: 30px;
}


.form-container{
background-color:white;
margin-bottom: 30px;
padding:30px;
background-color: white;
box-shadow: 0px 20px 60px rgba(65 50,100,0.05);
border-radius: 10px;
}

form {
display: flex;
}

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


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

.submit-button{
    background: darkslateblue;
    margin-left: 10px;
    color: white;
    width: 150px;
    border-radius: 50px;
    padding: 14px 24px;
    border: none;
}

.poem{
font-size: 16px;
background-color: white;
padding:20px;
line-height: 2;
border-left: 3px solid darkslateblue;
box-shadow: 0px 20px 60px rgba(65 50,100,0.05);
}

.hidden{
display: none;
}

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