/* this is the code for the website css */

	body {
		margin:0; 
		padding:0;
	}

	.topnav {
		overflow:hidden;
		background:#000;
		width:100%;
		text-align:center;
		position:fixed;
		z-index:100;
	}

	.topnav a {
		display:inline-block;
		color:#fff;
		padding:14px 16px;
		text-decoration:none;
		font-size:20px;
		font-family:bahnschrift;
		height:50px;
	}


	/* this is style is for the search bar */
	.active1 {
		width:100%;
		height:5vh;
		border-radius:20px;
		background:none;
		padding:20px;
		outline:none;
		color:#fff;
	}
	.active1::placeholder{
		color:#fff;
		font-size:15px;
		font-family:consolas;
		border:none
	}

	.active {
		float:left;
	}

	.topnav .icon {
		display:none;
	}

	.dropdown {
		float:right;
		overflow:hidden;
		transition:0.5s ease;
		margin-right:200px;
	}

	.dropdown .dropbtn {
		font-size:20px;
		border:none;
		outline:none;
		color:#fff;
		padding:14px 16px;
		background:inherit;
		font-family:bahnschrift;
		margin:0;
	}

	.topnav a:hover {
		transition:0.5s ease;
		border-right:2px solid orange;
		border-left:2px solid orange;
		color:orange;

	}
	.topnav a input:hover {
		background:none;
	}

	.dropdown:hover .dropdown-content {
		display:block;	
	}

	@media screen and (max-width:600px) {
		.topnav a:not(:first-child), .dropdown .dropbtn {
			display:none;
		}
		.topnav a.icon {
			float:right;
			display:block;
		}
	}

	@media screen and (max-width:600px) {
		.topnav.responsive {position:relative;}

		.topnav.responsive.icon {
			position:absolute;
			right:0;
			top:0;
		}
		.topnav.responsive a {
			float:none;
			display:block;
			text-align:left;
			background:#000;
		}
		.topnav.responsive.dropdown {float:none;}

		.topnav.responsive.dropdown-content {position:relative;}

		.topnav.responsive.dropdown.dropbtn {
			display:block;
			width:100%;
			text-align:left;
		}
	}




/* this is the css for the slideshow */
*{box-sizing:border-box;}
/* Slideshow container */
.slideshow-container {
  min-width:90%;
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size:20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.text h2 {
	color:orange;
	font-size:45px;
	font-family:swis721 blk bt;
}
.text p {
	font-family:consolas;
	font-size:20px;
	margin-top:90px;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


</* this is for the responsiveness of the the images slideshow */
	@media screen and (max-width:600px) {
		.mySlides img {
			height:100px;
		}
	}

.mySlides img {
	height:50vh;
}



/** this is the our story style */
.story {
	text-align:center;
	font-family:Humnst777 BlkCn Bt;
	font-size:40px;
	text-transform:uppercase;
	letter-spacing:5px;
}

/** this is the sttyling for the story of the gods */
#all-story {
	width:100%;
	padding:40px;
	text-align:justify;
	font-family:calibri;
	font-size:25px;
	word-spacing:2px;
}
.story-1 {
	margin-top:-30px;
}















/** THis styling is for the footer area */
footer {
	background-color:#000; 
	color:#fff; 
	padding:40px 20px; 
	font-family:bahnschrift;
}

.foot-1 {
	display:flex; 
	flex-wrap:wrap; 
	justify-content:space-between; 
	max-width:1200px; 
	margin:auto;
}

.foot1 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}

.foot2 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}

.foot3 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}
.foot3 li a {
	color:#fff;
	text-decoration:none;
}
.foot3 li a:hover {
	color:orange;
	transition:0.5s ease;
}

.foot4 {
	flex:1; 
	min-width:250px; 
	margin-bottom:20px;
}
.foot4 a {
	color:#fff;
}
.foot4 a:hover {
	color:orange;
	transition:0.5s ease;
}

.foot5 {
	text-align:center; 
	margin-top:30px; 
	border-top:2px solid orange; 
	padding-top:20px;
}
.foot5 a {
	color:orange;
}
.foot5 a:hover {
	color:#fff;
	transition:0.5s ease;
}



