* {
	box-sizing: border-box;
	font-family: 'Montserrat';
}

body {
	margin: 0;
	background-size:cover;
	background-repeat:no-repeat;
}

.landingHtml, .landingBody {
	height: 100%;
}

.landingMain {
	height: 85%;
}

form {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 20px;
}

input {
	padding: 5px;
	font-size: 15px;
}

button {
	padding: 5px;
	font-size: 15px;
	max-height: 30px;
}

a {
	color: snow;
}

.banner {
	width: 100%;
	height: 15%;
	background-image: url("https://allthingsdiscgolf.com/wp-content/uploads/1920X1080-da.jpg?2cb159");
	background-position-x: right; 
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 3px black solid;
}

.landingPage {
	display: block;
	height: 100%;
	background-color: #7ebea9;
}

.intro {
	color: snow;
	position: relative;
	width: 80%;
	padding: 5px 10px;
	background-color: #7ebea9;
	font-size: 25px;
	height: 60%;
	text-align:center;
	margin:auto;
}

.bottom {
	display: block;
	text-align: center;
	height: 30%;
	background-color: #96b545;
}

.source {
	position: relative;
	color: snow;
	top: 20%;
	padding: 5px 10px;
	font-size:75%;
}

.buttonBar {
	padding: 10px;
	height: 10%;
	background-color: #7ebea9
}

.search {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0%);
	background-color: #96b545;
	color: snow;
	cursor: pointer;
	padding-left: 50px;
	padding-right: 50px;
}

.container {
	width: 90%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.weather {
	font-weight: bold;
	font-size: 20px;
	max-width: 35%;
	color: snow;
	background-color: rgba(150, 181, 69, 0.8);
	border: 1px solid snow;
	border-radius: 15%;
	padding: 10px 20px;
	margin-top:10px;
}

h1 {
	color: rgb(14, 7, 53);
	
	
	max-width: 70%;
	padding: 5px 10px;
	max-height: 90%
}

.secondContainer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.results {
	margin: 20px;
	width: 45%;
}

.end {
	margin: 8px;
	color: snow;
	background-color: rgba(150, 181, 69, 0.8);
	border: 1px solid snow;
	border-radius: 5%;
	font-weight: 400;
	font-size: 20px;
	padding: 10px;
}

.title {
	margin-bottom: 10px;
	text-decoration: underline;
}

.address {
	font-size: 15px;
}

a:visited {
	color: snow;
}

#map {
	height: 400px;
	width: 45%;
	margin: 20px;
}

@media only screen and (max-width: 650px) {
	.secondContainer {
		display: block;
		width: 100%;
	}
	.results {
		width: 90%;
	}
	#map {
		width: 90%;
	}
	.bottom {
		width: 100%
	}
	.source {
		width: 100%;
		text-align: left;
	}
	.intro {
		width: 100%;
		text-align: left;
		font-size: 18px;
	}
}

@media only screen and (max-width: 450px) {
	.weather{
		font-size:16px;
	}

	.intro{
		height:40%;
		font-size:16px;
	}
	
	h1{
		font-size:25px;
	}
.search{
	padding-left:25px;
	padding-right:25px;
}

	.bottom{
		height:50%;
		font-size:15px;
		overflow: hidden;
	}
}

@media only screen and (max-height: 550px) {
	.intro {
		height: 80%;
	}
	.bottom {
		height: 50%;
	}
	h1 {
		height: 90%;
		font-size: 25px;
		text-align: center;
	}
	main {
		height:150%;
	}
}

@media only screen and (max-height: 350px) {
	.bottom, .intro {
		height: 100%;
	}
	main{
		height:195%;
	}
}

