/* Index page */

/* background */
html {
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,92,9,1) 0%, rgba(0,212,255,1) 100%);
}

/* background align/center/height */
.header {
	text-align: center;
	padding: 32px;
}

img {
	max-width: 100%;
	height: auto;
}

/* header/paragraph font*/
body {
	margin: 0;
	font-family: Stencil Std, fantasy;
}

/* topnav background color */
.topnav {
	overflow: hidden;
	background: rgb(238,174,202);
	background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

	/* topnav link styling */
	.topnav a {
		float: left;
		display: block;
		color: #f2f2f2;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
		font-size: 30px;
	}

		/* topnav changes link color on hover*/
		.topnav a:hover {
			background-color: #ddd;
			color: white;
		}

		/* topnav highlight for current page */
		.topnav a.active {
			background: rgb(63,94,251);
			background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 60%);
			color: black;
		}

	/* hide links on open/close for small screens */
	.topnav .icon {
		display: none;
	}

/* hides links except home on 600px size devices*/
@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

/* topnav media query */
@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;
		}
}


* {
	box-sizing: border-box;
}
/* slideshow font and align */
body {
	font-family: Verdana, sans-serif;
}

.mySlides {
	display: none;
}

img {
	vertical-align: middle;
}

/* slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* slide show caption text */
.text {
	color: #05f939;
	font-size: 30px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* slide show number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* the dots/bullets/indicators */
.dot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active {
	background-color: #717171;
}

/* slide show fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

/* slide show responsive */
@media only screen and (max-width: 300px) {
	.text {
		font-size: 11px
	}
}

.responsive {
	width: 100%;
	height: auto;
}