@charset "utf-8";
/* CSS Document */

html {
	height: 100%;
	width: 100%;
}

body {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background-image: url(../images/background.jpg);
	background-position: right top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100%, 100%;
	background-color: black;
}

header {
	flex: 0 0 auto;
}

.main_content {
	flex: 1 0 auto;
}

footer {
	flex: 0 0 auto;
	margin-left: -15px;
}

.logo {
	margin-top: 35px;
}

.h1 {
	font-size: 65px;
	text-align: center;
	font-family: ribeye;
	font-style: normal;
	font-weight: 400;
	padding-top: 50px;
	text-shadow: -4px -2px 2px rgba(218,148,3,1);
	color: rgba(102,11,24,1);
	border-bottom: thick ridge rgba(84,10,20,1);
}

.h2 {
	font-size: 35px;
	text-align: center;
	font-family: ribeye;
	font-style: normal;
	color: rgba(102,11,24,1);
	text-shadow: -4px -2px 2px rgba(218,148,3,1);
	border-bottom: ridge rgba(84,10,20,1);
	margin-top: 25px;
	margin-bottom: 25px;
}

.h3 {
	font-size: 30px;
	text-align: center;
	font-family: ribeye;
	font-style: normal;
	color: rgba(102,11,24,1);
	text-shadow: -4px -2px 2px rgba(218,148,3,1);
	padding-top: 8%;
}

.h3r {
	text-align: right;
}

.h3l {
	text-align: left;
}

.content1 {
	font-family: quicksand;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	padding-top: 90px;
	padding-bottom: 50px;
	color: rgba(99,99,99,1);
	text-shadow: 1px 1px rgba(0,0,0,1);
}

.content2 {
	font-family: quicksand;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
	padding-top: 90px;
	padding-bottom: 50px;
	color: rgba(99,99,99,1);
	text-shadow: 1px 1px rgba(0,0,0,1);
	text-indent: 25px;
}

.content3 {
	font-family: quicksand;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
	padding: 10px;
	color: rgba(99,99,99,1);
	text-shadow: 1px 1px rgba(0,0,0,1);
	text-indent: 25px;
}

.content4 {
	font-family: quicksand;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	text-align: left;
	padding: 15px;
	color: rgba(99,99,99,1);
	text-shadow: 1px 1px rgba(0,0,0,1);
}

.photogallery {
	font-family: quicksand;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	color: rgba(218,148,3,1);
	text-shadow: 1px 1px rgba(0,0,0,1);
	padding-bottom: 30px;
	padding-top: 30px;
	text-align: center;
}

.figure-caption {
	color: rgba(218,148,3,1);
}

.img-thumbnail {
	padding: .75rem;
	border: 5px outset rgba(52,58,64,.75);
	border-radius: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: rgba(84,10,20,.75);
}

.bg-dark {
	background-color: rgba(52,58,64,.75)!important;
	border: 5px solid black;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.footer1 {
	background-color: rgba(52,58,64,0.5);
}

/*Large Screen*/
@media (min-width:992px) and (max-width:1199px) {
	.h1 {
		font-size: 50px;
	}
}

/*Medium Screen*/
@media (min-width:768px) and (max-width:991px) {
	.h1 {
		font-size: 40px;
	}
	
	.content1 {
		font-size: 20px;
	}
}

/*Small Screen*/
@media (min-width:576px) and (max-width:767px) {
	.h1 {
		font-size: 60px;
		padding-top: 0px;
	}
	
	.content1 {
		font-size: 30px;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	
	.logo {
		width: 45%;
	}
}

/*Extra Small Screen*/
@media (max-width:575px) {
	.h1 {
		font-size: 35px;
		padding-top: 0px;
	}
	
	.content1 {
		font-size: 20px;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	
	.logo {
		width: 40%;
		padding-top: 15px;
	}
}
