body {
        background:
        linear-gradient(
            180deg,
            #efe6c8 0%,
            #e3d9b7 40%,
            #d9cfa8 100%
        );
    color: #4d2727;
    font-family: "Allura", cursive;
}

.container {
    margin: 55px auto;
    width: 90%;
    max-width: 900px;
    border: 1px solid rgba(140, 110, 80, 0.45);
    outline: 1px solid rgba(140, 110, 80, 0.25);
    padding: 30px 40px;
}

header {
    margin-bottom: 12px;
}

h1 {
    font-size: 40px;
    text-align: center;
}

main {
    margin-bottom: 24px;
}

.form-container {
    background-color: #e3d9b7e3;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 6px 6px 14px 2px rgba(0, 0, 0, 0.12);
    padding: 20px 20px;
}

form {
  display: flex;
}

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

.instructions {
    font-size: 25px;
    padding: 14px 22px;
    width: 85%;
    border: none;
    border-radius: 18px;
    line-height: 28px;
    font-family: "Allura", cursive;   
}

.submit-button {
    width: 15%;
    margin-left: 26px;
    font-size: 25px;
    padding: 12px 2px;
    border: none;
    border-radius: 18px;
    font-family: "Allura", cursive; 
}

.generating {
    animation: fade-blink 1.2s ease-in-out infinite;
}

@keyframes fade-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.poem {
    font-size: 30px;
    background-color: #e5d7afb6;
    padding: 20px;
    text-align: center;
    line-height: 1.2;
    border-left: 4px solid #968557b6;
    border-radius: 18px;
    box-shadow: 6px 6px 16px 2px rgba(0, 0, 0, 0.06);
}

.hidden {
    display: none;
}

a {
    color:#554343;
    text-decoration: none;
    font-weight: bold;
}

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