body {
    background-color: rgb(192, 216, 224);
    font-family: Arial, serif;
}

a {
    color: rgb(128, 157, 253);
    text-decoration: none;
}

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

header {
    margin-bottom: 30px;

}

h1 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: rgb(128, 157, 253);
}

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

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: #272044;


}

.submit-button {
    background-color: cornflowerblue;
    border: none;
    color: white;
    padding: 16px 24px;
    margin-left: 10px;
    border-radius: 50px;
    cursor: pointer;
    width: 100px;
    font-size: 16px;

}

.poem {
    font-size: 16px;
    background-color: white;
    padding: 20px;
    line-height: 1.8;
    border-left: 3px solid cornflowerblue;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.1);
    margin-top: 30px;
    color: #272044;

}
.hidden {
    display: none;
}
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #555;
}

.generating {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
