
body {
	font-family: 'Raleway', sans-serif;
	text-decoration: none;
	margin: 0;
	padding: 0;
	background-color: #111111;
	color: white;
}

.container {
	display: flex;
	flex-direction: column;
	height: 800px;
	background-size: cover;
	background-position: center;

	color: white;
	
}

nav	{
	display: flex;
	justify-content: flex-end;	
	padding-right: 35px;
	padding-top: 25px;
	animation-name: fade-in;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-delay: 0.7s;
	animation-fill-mode: both;
}

nav a {
	width: 90px;
	padding: 10px;
	text-decoration: none;
	color: white;
	font-size: 20px;
	text-align: center;
	transition-duration: 0.5s;

}

nav a:hover {
	background-color: black;
	background-opacity: 0.7; 
}


@keyframes fade-in {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

#title {
	margin-top: 200px;
	display: flex;
	flex-direction: column;
	margin-left: 40px;
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	animation-name: fade-in;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-delay: 1.5s;
	animation-fill-mode: both;
}

#title h1 {
	margin-bottom: 0;
	padding-bottom: 0;
	border: 3px solid white;
	max-width: 500px;
	text-align: center;
}

#title h3 {
	margin-top: 0;
	padding-top: 0;
	margin-left: 29px;
}

/*Sent Page*/
#sent {
	margin-top: 200px;
	display: flex;
	flex-direction: column;
	margin-left: 40px;
	font-family: 'Anton', sans-serif;
	font-size: 40px;
}

#sent h2 {
	margin-bottom: 0;
	padding-bottom: 0;
	max-width: 700px;
	margin-left: 29px;
	text-align: center;
}

#sent h3 {
	margin-top: 0;
	padding-top: 0;
	margin-left: 29px;
	margin-bottom: 0;
}

#sent button {
	width: 100px;
	margin-left: 29px;
	margin-top: 0;
}

/*End of Sent Page*/

/*End of header*/
/*Funny you should say that ad*/

.funny_ad {
	display: flex;	
	margin: 25px 50px;
	flex-wrap: wrap;
	justify-content: center;

}

.funny_text {
	flex-basis: 500px;
	margin: 0 40px;
	
	
}

/*end of ad*/
/*Bio*/

#bio {
	min-height: 500px;
	background: transparent;
	padding-top: 1px;
}

#bio-title, #store-title, #contact-title {
	z-index: 2;
	position: relative;
	text-align: center;
	margin-bottom: 0;
	font-size: 50px;
	
}

.bio-copy {	
	z-index: 3;
	display: flex;
	margin: 15px 60px;
	justify-content: center;

		
}

.bio-copy p {
	z-index: 3;
	flex-basis: 500px;
	margin: 0 20px;
}

/*end Bio*/
/*Store*/

.store {
	display: flex;
	margin: 0 100px;
	justify-content: center;

}

.lh-pic-copy, .mtttm-pic-copy {
	display: flex;
}

.lh-pic-copy p, .mtttm-pic-copy p {
	margin: 0 30px;
}

.store img {
	border: 1px solid white;
	padding: 5px;
}

#form-block {
	display: flex;
	flex-direction: column;	
}

#form-block div {
	margin-bottom: 20px;	
}

#form-block input, #form-block select, #form-block textarea {
	width: 200px;
}

/*End Store*/
/*Contact*/

#contact-container {
	background: transparent;
	background-size: cover; 
	background-position: center;
}

#contact {
	margin: 20px 10%;
	
	padding: 20px 0;
}

#contact-forms-block {
	display: flex;
	justify-content: space-around;	
}

#book-stuart, #contact-stuart {
	z-index: 2;
}

#booking-form input, textarea {
	width: 400px;
	
}

#booking-form div {
	margin-bottom: 20px;
	
}

#radio-block input {
	width: 10px;
	margin-bottom: 2px;
	
}

#contact-form input, textarea {
	width: 400px;
	
}

#contact-form div {
	margin-bottom: 20px;
}

/*End Contact*/
/*footer*/

footer {
	margin: 20px 10%;
	display: flex;
	justify-content: space-between;
}

footer i {
	color: white;
	size: 30px;
}





@media all and (max-width: 640px) {
	.container {
		justify-content: center;
		align-items: center;
		background-position: 70% 50%;
		height: 600px;
	}
	nav {
		flex-direction: column;
		padding-right: 0;
		justify-content: flex-start;
		margin-top: 0;
		padding-top: 0;
		margin-bottom: 130px;
	}
	#title {		
		align-items: center;
		font-size: 20px;		
	}

	.lh-pic-copy, .mtttm-pic-copy, #contact-forms-block, .bio-copy, .store {
		flex-direction: column;
	}
	.lh-pic-copy p, .mtttm-pic-copy p {
	margin: 0;
}

}


