body {
    background-color: rgb(231, 245, 249);
}

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

header {
    margin-bottom: 30px;

}

a {
    color: rgb(229, 100, 229);
}

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

.form-wrap {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0px 20px 60px rgba(44, 42, 48, 0.08);
}

form {
    display: flex;
}
.hint{
    opacity: 0.6;
    padding-top: 6px;
    font-size: 10px;
}
.name {
    padding: 15px;
    border: 1px solid grey;
    width: 80%;
    border-radius: 45px;
    line-height: 20px;
}
#submit {
    width: 20%;
    margin-left: 10px;
    border-radius: 45px;
    background-color: rgb(229, 100, 229);
    color: white;
    font-size: 14px;
    padding: 14px 24px;
    border: none;
}

.poem {
    font-size: 18px;
    padding: 20px;
    background-color: #fff;
    line-height: 24px;
    border-left: 5px solid purple;
    box-shadow: 0px 20px 60px rgba(65, 50, 100, 0.08);
}

.poem strong {
    color: rgb(229, 100, 229);
    font-style: italic;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    margin: 30px;
    font-size: 14px;
}
@keyframes blink{
    50%{
        opacity: 0;
    }
}
.generating{
    animation: blink 1s step-start 0s infinite;
}