h1 {
	text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
	font-family: 'Pacifico', cursive;
	color: #120b29;
	font-size: 50px;
	height: 100px;
	text-align: center;
	margin: 0;
} 

main > div {
	background-color: thistle;
}

main > div > p {
	background-color: #120b29;
	margin: 0;
	padding: 10px;
	font-family: 'Roboto', sans-serif;
	color: white;
	border-top: 2px solid plum;
	border-bottom: 2px solid plum;

}


#contact-form {
	width: 100%;
	height: 1200px;
	display: flex;
	background-color: none;
	justify-content: center;

	background-image: url("../img/constellations.gif");
	background-position: center;
	background-repeat: repeat;
	background-color: none;
	background-size: cover;
	background-color: thistle;
}

#contact-form > div{
	width: 800px;
	background-color: none;
	display: flex;
	justify-content: center;
	align-items: center;

}
#contact-form > div > div {
	background-color: beige;
	width: 500px;
	padding: 20px;
	border-radius: 20px;
}

form {
	float: right;
	text-align: left;
}

form p {
	margin: 0;
	height: 70px;
}

.input {
    border: 1px solid #d7d7d7;
    width: 95%;
    height: 40px;

    font-family: 'Pacifico', sans-serif;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;

    border-radius: 20px;
}

main > div {
	text-align: center;
}

.p-grid {
	display: grid;
	grid-template-rows: 1fr 1fr;
	background-color: none;

	font-family: 'Roboto', sans-serif;
	text-align: left;

	margin-bottom: 10px;
}

.p-grid > span {
	padding-left: 10px;
}

#text-area {
	display: block;
	height: 100px;
}

#text-area > textarea {
	height: 70%;
	width: 99%;
	resize: none;


    font-family: 'Pacifico', sans-serif;
    font-size: 20px;
}

.policy {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	text-align: justify;
}

#button-mail {
	display: flex;
	justify-content: center;
	align-items: center;
}

#button-mail > button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	font-family: 'Pacifico', sans-serif;
    font-size: 30px;

	border-radius: 20px;
	transition: ease all 0.2s;
}


.inactive > button {
	background-color: beige;
	color: khaki;
	cursor: not-allowed;
}

.active > button {
	background-color: #120b29;
	color: khaki;
}

.active > button:hover {
	background-color: plum;
	color: white;
	cursor: pointer;
	font-size: 31px;
}

@media only screen and (max-width: 600px) {

	#contact-form > div{
		width: 400px;
	}

	#contact-form {
		height: 1250px;
	}

	form > *{
		border: solid none 2px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

}




