.contact{
    margin-top: 10px;
}
label{
    display: block;
    margin-top: 15px;
}
#firstName, #lastName, #email, #website{
    width: 215px;
}
.send{
    width: 90px;
    border: solid 1px #000000;
    border-radius: 3px;
    background-color: #990000;
    color: #ffffff;
    font-weight: bold;
    margin: 5px 0px 5px 0px;
}
/*--------media query----------*/
@media screen and (max-width: 360px){
    #firstName, #lastName, #email, #website{
        width: 75%;
    }
    #about, #message{
        width: 100%;
    }
}
