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

footer{
    text-align: center;
}

.pageHeading{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.container{
    margin: 120px auto;
    max-width: 600px;
    background-color: #e8d5b7;
    padding: 6%;
    box-shadow: 0px 20px 60px rgba(129, 110, 88, 0.08);
    border-radius: 10px;
    border-color: #bcae97;
}

h1{
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.5;
    color: #5a3921;
    font-style: italic;
    padding-bottom: 5%;
}

header{
    margin-bottom: 30px;
}


form{
   
    display: flex;
    
}

.instructions{
    padding: 16px;
    border: 1px solid rgba(39, 33, 66, 0.5);
    width: 80%;
    font-size: 16px;
    border-radius: 50px;
    line-height: 20px;
    color: #5a3921;
    border-width: 2px;
    border-color: #3e560e;
}

.submitButton{
    margin-left: 10px;
    background-color: #76a21e;
    border-width: 2px;
    border-color: #3e560e;
    border-radius: 50px;
    font-size: 16px;
    width: 150px;
    padding: 14px 24px ;
}

.sentence{
    font-size: 18px;
    color: #af8566;
    background-color: #6b8c42;
    padding: 20px;
    line-height: 1.5;
    border-left: 3px solid #5a3921;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 20px 60px rgba(129, 110, 88, 0.08);
}

.hidden{
    display: none;
}

.sentence strong{
    color: #c27f50;
}

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

a{
    color: #6b8c42;
}

.formContainer{
    padding: 15px 20px;
    background-color: #6b8c42;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 20px 60px rgba(129, 110, 88, 0.08);
}

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

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

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

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

.description{
    text-align: center;
    font-size: 16px;
    margin-bottom: 10%;
}