
#message {
	display: block;
	padding: 5px;
	margin-bottom:10px;
	width: 100%;
	height: 200px;
	border: 1px solid #aaaaaa;
    box-sizing: border-box;
	resize: none;
	outline: none;
}

#submit {
	width: 120px;
	height: 32px;
	vertical-align: middle;
	font-size : 14px;
	color: #333333;
	border: 1px solid #aaaaaa;
	border-radius: 3px;
	background-color: #f5f5f5 ;
	cursor: pointer;
}

#name,
#email {
	width: 50%;
	height: 32px;
	padding: 0 5px;
	line-height: 32px;
	border: 1px solid #aaaaaa;
	border-radius: 3px;
	box-sizing: border-box;
	outline: none;
	margin-bottom: 10px;
}

#message,
#name,
#email {
	font-family: 'dejavu sans mono';
	font-size : 14px;
}

#form textarea::placeholder,
#form input::placeholder {
	opacity: 0.3;
}

@media screen and (max-width: 600px) {
	#name, #email {
		width: 100%;
	}
}
