body{
    background-color:rgb(208, 224, 141);
}
h1{
    margin-top:80px;
    text-align: center;
    color:black;
    text-decoration: underline;
}
p{
    text-align: center;
    font-family: tahoma;
}
form{
    border: 2px solid black;
    border-radius: 10px;
    width:700px;
    padding:20px;
    margin: 30px auto;
    display:flex;
    justify-content: space-between;
     box-shadow: 0 30px 50px rgba(65, 59,100, 0.08);
}
form input{
    width:300px;
    height:20px;
    padding:10px;
    background-color: transparent;
    color:black;
}
.submit{
    width:200px;
    height:40px;
    padding: 3px 10px 3px 10px;
    font-size: 15px;
    border-radius: 20px;
    border: none;
    background-color: rgb(162, 218, 113);
    border: 2px solid black;
    margin-left: 20px;
}
.generator{
    width:800px;
    margin:50px auto;
    background-color:white;
    border-radius: 30px;
    padding:30px;
}
.submit:hover{
    opacity:0.8;
    font-weight:300;
}
input::placeholder{
    color:black;
}
.reply{
    background-color: rgb(228, 241, 241);
    width:700px;
    padding: 20px;
    min-height:200px;
    line-height: 50px;
    margin: 20px auto;
    border-left: 5px solid black;
    box-shadow: 0 30px 50px rgba(65, 59,100, 0.08);

} 