@charset "utf-8";
/* CSS Document */

/*SMARTPHONES*/
@media only screen
and (max-device-width : 1024px)
{
/* Styles */

.ContactDiv {
	float: left;
	margin-right: 25px;
	width: 100%;
}
#ContactContainer {
	color: white;
	font-size: 40px;
	width: 90%;
	margin-left: 100px;
	opacity: 0;
}

#EmailForm {
	font-size: 40px;
	text-align: left;
}
#Subject, #FromEmail, #Name {
	width: 100%;
	font-size: 40px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#Message {
	font-size: 40px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	width: 100%;
	height: 400px;
}
input, textarea {
	border-color: black;
	margin-bottom: 2px;
	padding-left: 10px;
	border-radius: 10px;
	font-size: 40px;
}
input:hover {
	box-shadow: 0 0 5px #03F;
	background-color: #CFF;
	border-color: #0F0;
}
textarea:hover {
	box-shadow: 0 0 5px #03F;
	background-color: #CFF;
	border-color: #0F0;
}
input:focus {
	box-shadow: 0 0 5px #03F;
	background-color: #E5E5E5;
	border-color: #0F0;
}
textarea:focus {
	box-shadow: 0 0 5px #03F;
	background-color: #E5E5E5;
	border-color: #0F0;
}
#Cancel {
	margin-top: -15px;
	text-align: right;
	font-size: 30px;
}

}

/*LAPTOP/DESKTOP*/
@media only screen
and (min-device-width : 1025px) {
/* Styles */

.ContactDiv {
	float: left;
	margin-right: 25px;
}
#ContactContainer {
	color: white;
	font-size: 24px;
	width: 90%;
	min-width: 900px;
	margin: 50px 20px 50px 20px;
	opacity: 0;
}

#EmailForm {
	font-size: 24px;
	text-align: left;
}
#Subject, #FromEmail, #Name {
	width: 400px;
	font-size: 20px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#Message {
	font-size: 20px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	width: 500px;
	height: 400px;
}
input, textarea {
	border-color: black;
	margin-bottom: 2px;
	padding-left: 10px;
	border-radius: 10px;
	font-size: 22px;
}
input:hover {
	box-shadow: 0 0 5px #03F;
	background-color: #CFF;
	border-color: #0F0;
}
textarea:hover {
	box-shadow: 0 0 5px #03F;
	background-color: #CFF;
	border-color: #0F0;
}
input:focus {
	box-shadow: 0 0 5px #03F;
	background-color: #E5E5E5;
	border-color: #0F0;
}
textarea:focus {
	box-shadow: 0 0 5px #03F;
	background-color: #E5E5E5;
	border-color: #0F0;
}
#Cancel {
	margin-top: -15px;
	text-align: right;
	font-size: 30px;
}

}
