body {
    background-color: #f5f0fa;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a {
    color: #6a4c93;
    text-decoration: none;
}

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

h1 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #272044;
}

header {
    margin-bottom: 30px;
}

.form-container {

    padding: 15px 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    margin: 15px;
    margin-bottom: 30px;
}

form {
    
    display: flex;
    

}

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

.instructions {
    flex: 1;
    padding: 10px;
    width: 80%;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.submit-button {
    background-color: #6a4c93;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.poem {
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    border-left: 3px solid #6a4c93;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #888888;
    margin-top: 30px;
}


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

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