div#envelope{
width: 80%;
padding:10px 0;
border: 2px solid gray;
border-radius:10px;
}
form{
width:70%;
margin:4% 15%;
}


/* Makes responsive fields. Sets size and field alignment.*/
input[type=text],input[type=email]{
margin-bottom: 20px;
margin-top: 10px;
width:100%;
padding: 15px;
border-radius:5px;
border:1px solid #2a4579;
}
input[type=submit]
{
margin-bottom: 20px;
width:100%;
padding: 15px;
border-radius:5px;
border:1px solid #FFFFFF;
background-color: #2a4579;
color: aliceblue;
font-size:15px;
cursor:pointer;
}
#submit:hover
{
background-color: black;
}
textarea{
width:100%;
padding: 15px;
margin-top: 10px;
border:1px solid #2a4579;
border-radius:5px;
margin-bottom: 20px;
resize:none;
}
input[type=text]:focus,input[type=email]:focus,textarea:focus {
border-color: #4697e4;
}

