.container
{
	margin-left: 27em;
	max-width:55em;
	width:55em;
	margin-top: -72em;
	box-sizing: border-box;
    border: .2em solid black;
    border-radius: .25em;
	background-color: darksalmon;
	color:#111;
}

h3
{
	text-align: center;
	font-size: 2em;
}

#info, #message
{
	margin: 1em;
	box-sizing: border-box;
    border: .1em solid black;
    border-radius: .25em;
	background-color: white;
}

#contact input[type=text]
{
	border: none;
	background-color: white;
	font-size: 1em;
	width: 50em;
}

#contact input[type=email]
{
	border: none;
	background-color: white;
	font-size: 1em;
	width: 50em;
}
#contact textarea
{
	height: 20em;
	width: 50em;
    resize:none;
	font-size: 1em;
	overflow: auto;
	border: none;
}

#submit
{
	border: none;
	text-align: center;
	background-color: darkslategray;
	padding-top: .5em;
	padding-bottom: .5em;
	margin-bottom: 1em;
	margin-left: 1em;
	margin-right: 1em;
}

button
{
	cursor: pointer;
	padding-left: 20em;
	padding-right: 20em;
	font-size: 1em;
	border: none;
	background-color: darkslategray;
	color: white;
}

button:hover
{
	background-color: darksalmon;
}