@charset "utf-8";
/*General Styles*/
* {
	font-family: Arial, "sans-serif";
}
html {
	background-image: url("images/beach.jpeg");
}
body {
	margin: 0;
}
#container {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	height: 800px;
	border: 1px solid black;
	background-color: #F2E6D0;
	color: #3F83BF;
}
#whitespace {
	width: 100%;
	height: 50vh;
	background-color: white;
	position: absolute;
	top: 600px;
	z-index: -1;
	margin: 0;
	padding: 0;
	border-top: 1px solid black;
}
#tripinfo, #contact {
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	flex-shrink: 0;
}
#tripinfo {
	height: 45%;
}
#contact {
	height: 30%;
}
form {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}
#submit, #reset {
	background-color: white;
	border-radius: 0;
	width: 50%;
	font-size: 3em;
	border: 1px solid black;
}
legend {
	font-size: 150%;
}
nav {
	width: 100%;
}
ul {
	display: flex;
	width: 100%;
	padding: 0;
}
.navigation {
	width: 25%;
	height: 50px;
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
	background-color: #C9DFF2;
	border: 2px solid #3F83BF;
	list-style-type: none;
	text-decoration: none;
	color: #3F83BF;
}
li > a {
	text-decoration: none;
	color:  #3F83BF;
}

#explanation {
	text-align: center;
}
/*Mobile Styles*/