@charset "UTF-8";
h1{ color: #991305; }
h2{
	color: #991305;
	text-align: center;
	border-top: solid #991305 .2em;
}
section{
	width: 85vw;
	margin: 0vh auto;
	background: white;
	padding: 1em 5vw;
	box-sizing: border-box;
}
#items{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.item{
	width: 50%;
	padding: 1em;
	box-sizing: border-box;
}
.item img{
	width: 25em;
	height: 25em;
}
#map{
	width: 100%;
	margin: 0;
	padding: 0;
}
input, textarea {
	color: white;
	width:100%;
	background:#C0E513;
	border: none;
	margin: .5em 0;
	padding:.5em;
	box-sizing: border-box;
	color:#3a3a3a;
    transition: 400ms;
}
input:focus, textarea:focus {
    outline: none;
	background: white;
    border-radius: 1.5em;
    transition: 400ms;
}
#submit {
    border:none;
    margin-top:1em;
    border-radius: 1.5em;
    cursor:pointer;
    -webkit-transition: background 400ms;
	-moz-transition: background 400ms;
	-o-transition: background 400ms;
	transition: background 400ms;
}
#submit:hover {
	background: black;
	color: white;
}

#submit:active{
	color:black;
    background: white;
}