body {
    background-color: #F9F7Fe;
    color: rgb(63, 63, 63);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
    color: (59, 36, 98);
}

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

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

header {
    margin-bottom: 30px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 20px 60px rgba(59, 36, 98, 0.08);
    padding: 20px;
    margin-bottom: 20px;
}

form {
    display: flex;
}

.instructions {
    width: 80%;
    border: 1px solid rgba(59, 36, 98, 0.5);
    border-radius: 20px;
    padding: 16px;
    font-size: 16px;
    line-height: 20px;
}

.submit-button {
    margin-left: 10px;
    width: 150px;
    background-color: rgb(59, 36, 98);
    border: none;
    border-radius: 20px;
    padding: 14px 24px;
    color: white;
    font-size: 16px;
    line-height: 20px;
}

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

.quote {
    background-color: white;
    border-radius: 10px;
    border-left: 6px solid rgb(59, 36, 98);
    box-shadow: 0px 20px 60px rgba(59, 36, 98, 0.08);
    padding: 20px;
    font-size: 18px;
    line-height: 2;
}

.hidden {
    display: none;
}

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

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

strong {
    color: rgb(59, 36, 98);
    font-size: 16px;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}