/* MAIN
**************/
main {
	margin-bottom: 2%;
	background: url(pinceaux-bg.jpg) no-repeat fixed;
	background-size: cover;
}
.wrap-all {
	display: inline-block;
	width: 100%;
	text-align: left;
}
.wrap-container-right {
	display: inline-block;
	width: 400px;
	margin: 160px 40px 160px 100px;
}
/* FORM
**************/
#form-title {
	color: white;
	font-weight: 600;
}
form p {
	margin-bottom: 30px;
	text-align: center;
	font-size: 20px;
}
.wrap-name, .wrap-mail, .wrap-message {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
#nom, #firstname, #email, textarea {
	width: 100%;
	padding: 15px;
	margin: 15px;
}
textarea {
	font-family: raleway, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	resize: none;
	border-radius: 5px;
	border: none;
}
.wrap-message {
	height: 200px;
}
.wrap-btn {
	margin: 15px;
	text-align: right;
}
#btn {
	padding: 8px;
	background-color: white;
	color: #646566;
}
#btn:hover {
	background-color: #646566;
	color: white;
}
input {
	border: none;
	border-radius: 5px;
	direction: ltr;
	font-family: raleway, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
}
input:focus,
textarea:focus {
	outline: none;
	outline-offset: none;
	border: 2px solid #646566;
	box-shadow: none;
}

/* MEDIA QUERIES
****************/
@media screen and (max-width: 800px) {
	.wrap-container-right{
		margin: 0;
		width: inherit;
	}
	.wrap-all {
		text-align: center;
		margin-top: 20px;
	}
	#form-title {
		font-weight: 600;
	}
	#nom, #firstname, #email, textarea {
	width: 100%;
	padding: 10px;
	margin: 15px;
	}
}
