#contact {
	height: 80vh;
	padding: 2rem;
	align-items: start;
	margin-bottom: 2.5rem;
}
h1 {
	margin-bottom: 1rem;
	font-size: 2rem;
}
form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
	padding: 1rem;
}
form input {
	width: 49%;
	padding: 0.7rem;
	margin: 0.5rem 0;
	font-family: inherit;
	font-size: 1rem;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid;
	transition: all 0.1s linear;
}
form input#subject {
	width: 100%;
}
form textarea {
	width: 100%;
	padding: 0.7rem;
	font-family: inherit;
	font-size: 1rem;
	border-radius: 5px;
	border: 1px solid;
	background-color: transparent;
	margin: 0.5rem 0;
	transition: all 0.1s linear;
}
form input:focus, form textarea:focus {
	box-shadow: 0 0 5px #000000;
	outline: none;
}
form button {
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 500;
	margin: 0.5rem auto 0;
	cursor: pointer;
	transition: all 0.1s linear;
}
form button:hover, form button:focus {
	background-color: #F6931C;
	color: #FFFFFF;
	font-weight: 700;
	border-color: transparent;
	box-shadow: 0 0 5px #F6931C;
	outline: none;
}
@media screen and (max-width: 767px) {
	#contact {
		height: 95vh;
		align-items: center;
		margin-bottom: 8rem;
	}
	form input {
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
	#contact {
		padding: 2rem 1rem;
	}
	form {
		padding: 1rem 0;
		margin-top: 1rem;
	}
}