* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Pangolin", cursive;
	font-optical-sizing: auto;
	letter-spacing: normal;
	background: url(/images/sky.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #4f6146;
}
h1 {
	letter-spacing: 2.5px;
}
select, textarea, button {
	font-family: "Pangolin", cursive;
	font-optical-sizing: auto;
	letter-spacing: normal;
	color: #4f6146;
}
.form {width: 550px;
	margin: 0 auto;
	color: #524f4d;
	padding: 30px 0px; 
}
.form * {
	outline: none;	
}
.form_title{
	font-size: 32px;
	font-weight: 700;
	margin: 0px 0px 30px 0px;
	}
.form_item {
	margin: 0px 0px 20px 0px;
}
.form_label {
	font-size: 18px;
	display: block;
	margin: 0px 0px 10px 0px;
}
.form_input {
	padding: 15px;
	border-radius: 5px;
	width: 100%;
	font-size: 18px;
}
textarea.form_input{
	width: 100%;
	min-height: 90px;
	resize: vertical;
}
.form_button {
	width: 150px;
	display: flex;
	justify-content: center;
	justify-self: center;
	align-items: center;
	height: 150px;
	background-color: #feb431;
	color: #4f6146;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 50%;
	box-shadow: 5px 5px 5px #524f4d;
	transition: background-color 0.5s ease 0s;
	position: relative;
}
.form_button:hover {
	background-color: #ffffff;
	color: #a60311;
	font-size: 1.3rem;
}
.form_button:active {
	top: 3px;
	box-shadow: 0 2px 0 #161b13;
}
select {
    font-size: 18px;
	letter-spacing: 1px;
	font-weight: bold;
	transition: background-color 0.5s ease 0s;
	color: #524f4d;
	border-radius: 5px;
}	

@media (max-width: 767px) {
	.form {
	width: 80%;
}
.form_input {
	width: 80%;
}
textarea.form_input{
	width: 80%;
}
select {
	width: 80%;
}
}

@media (min-width: 768px) and (max-width: 1096px){
	body {
			height: 100vh;}
	.form {
	width: 80%;
}
.form_input {
	width: 80%;
}
textarea.form_input{
	width: 80%;
}
select {
	width: 80%;
}
}