
/* Some aspects of form were inspired by the example in discussion section and the video on contact forms 
I changed the coloring, borders, fonts and some of the other styling as well to match my page better.
Additionally, I added a section of the contact form to really make it my own */

#contact-form{
    background-color: #d2e2ee;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #535353;
}

#contact-form label{
    display: inline-block;
    margin-right:10px;
    width: 70%;
    margin-top: 15px;
    margin-bottom: 0;
}

#contact-form input {
    width: 100%;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

#contact-form textarea{
    font-family: 'Courier New', Courier, monospace;
}

#contact-form textarea{
    width: 100%;
    height: 20vh;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
  
#contact-form input[type=submit]{
    display: block;
    background-color: #ffffff;
    border: none;   
    color: #000000;
    width: 60%;
    padding: 10px;
    margin: 0 auto;
}

#contact-form input[type=submit]:hover{
    background-color: #B6CEE2;
    border: 1px solid #535353;
    transition: .5s;
}

#contact-form #submit-button{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #535353;
    font-size: 100%;
}
