body {
    background-color: #a5c2b0;
    font-family: "Ubuntu Mono", ui-sans-serif, system-ui, sans-serif;
}
a {
    color: hsl(198, 96%, 51%);
}
.container {
    margin: 120px auto;
    max-width: 600px;
}
h1 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: rgb(53, 3, 3);
}

header {
    margin-bottom: 10px;
}


form {
    padding: 30px;
    background-color: rgb(114, 135, 158);
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 18px;
    display: flex;
    margin-bottom: 20px;
}

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

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

    
} 

.submit-button{
    margin-left: 10px;
    background-color: rgb(216, 28, 185);
    color: beige;
    border: none;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    padding: 14px 24px;

}


.submit-button:hover {
  cursor: pointer;
  background-color: #a5c2b0;
  color: #36453b;
}

.poem {
    font-size: 14px;
    background-color: #fff;
    padding: 30px;
    line-height: 2;
    border-left: 3px solid rgba(54, 24, 54);
    box-shadow: 0px 20px 60px rgba(136, 129, 151, 0.03);
    border-radius: 10px;
}

.hidden {
    display: none;
  }
  .poem strong {
    color: #885df1;
  }

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