p.form-flex{
text-align: center;
background-color: blanchedalmond;
padding: 4%;
width: 80%;
font-size: 25pt;
border: 3px solid rgb(117, 89, 46);
border-radius: 20px;
color: rgb(117, 89, 46);
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
input, textarea{
    background-color: rgb(255, 255, 255);
    font-size: 15pt;
    border: none;
    width: 40%;
    padding: 20px;
    resize: none;
    margin: 10px;
    border-radius: 10px;
    color: rgb(199, 177, 144);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
input#submit{
    background-color: rgb(255, 255, 255);
    font-size: larger;
    border: 3px solid rgb(117, 89, 46);
    border-radius: 20px;
    cursor: pointer;
    color: rgb(117, 89, 46);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
    
}