.contact-title {
    font-size: 20px;
    color: #7A7A7A;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-form {
    width: 400px;
    margin: auto;
    margin-bottom: 80px;
}

.contact-instructions {
    color: #BBBBBB;
    font-size: 14px;
    text-align: center;
}

.contact-label {
    color: #878787;
    font-size: 14px;
    margin-top: 10px;
}

input {
    font-family: 'Roboto', sans-serif;
    padding: 5px;
    border: 1px solid rgb(172, 172, 172);
    border-radius: 2px;
    background-color: white;
    padding-left: 5px;
    resize: none;
    margin-top: 5px;
    margin-bottom: 5px;
}

textarea {
    font-family: 'Roboto', sans-serif;
    padding: 5px;
    border: 1px solid rgb(172, 172, 172);
    border-radius: 2px;
    background-color: white;
    padding-left: 5px;
    resize: none;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}
  
.button {
    background-color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(172, 172, 172);
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: #616161;
    letter-spacing: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 11px 28px;
    padding-top: 12px;
    border-radius: 2px;
}
  
.button:hover {
    background-color: black;
	color: white;
    cursor: pointer;
	border-color: black;
}

@import url('https://fonts.googleapis.com/css?family=Roboto');