body{
    background-color: #FFFFE0;
      font-family: "Montserrat", sans-serif;
}

.montserrat{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

h1{
    font-weight: 700;
    font-size: 35px;
    line-height: 1.5;
    color: #272044;
    text-align: center;

}

header{
    margin-bottom: 30px;
}

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

}

.poem{
    font-size: 18px;
    background-color: white;
    padding: 28px;
    line-height: 2;
    border-left: 3px solid #885df1;
    box-shadow: 0px 20px 60px rgba(39, 33, 66, 0.83);
    margin: 5px 0;

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

form{
    display: flex;
}

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

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

.submit-form{
    padding: 14px 24px;
    border: none;
    width: 150px;
    font-size: 16px;
    border-radius: 50px;
    color: white;
    background: #885df1;
    margin-left: 10px;
}

footer{
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

a{
    color: #885df1;

}

.hidden{
    display: none;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}



