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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*PAGE CSS BEGINS HERE*/

* {
	box-sizing: border-box;
}

html, body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    height: 100%;
    color: #3b3d3d;
}
body {
	color: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
	background: rgb(230,230,230);
	background: radial-gradient(circle, rgba(240,240,240,1) 30%, rgba(170,170,170,1) 100%);
}

h1 {
	font-family: 'Shadows Into Light', cursive;
	font-size: 50px;
	font-weight: 700;
	text-shadow: 3px 3px 5px rgba(0,0,0,.35);
}

h2 {
	font-size: 24px;
	font-weight: 700;
}

h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
}

hr {
	border: 0;
    height: 2px;
	margin: 60px 0;
    background-image: linear-gradient(90deg, rgba(77, 89, 80, 0) 0%, rgba(77, 89, 80, 0.75) 30%, rgba(77, 89, 80, 0.75) 70%, rgba(77, 89, 80, 0) 100%);
	
}

header {
	background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);
	height: 100px;
	min-height: 100px;
	width: 100%;
	display: flex;
	flex: 0 1 auto;
	align-items: center;
}

header img {
	height: 80px;
	width: auto;
	margin: 0 20px;
	
}

nav {
	margin: auto;
}

nav ul li{
	display: inline;
	margin-right: 30px;
}

nav ul li:last-of-type {
	margin-right: 0;
}

nav a {
	color: #ccc;
	text-decoration: none;
	font-size: 20px;
}

nav a:hover {
	color: #fff;
}

main {
	flex: 1 0 auto;
	justify-content: center;
	text-align: center;
}

main img{
	box-shadow: 5px 5px 10px rgba(0,0,0,.5);
}

main iframe {
	box-shadow: 10px 10px 20px rgba(0,0,0,.5);
}

.welcome {
	margin: 60px auto;
}

.welcome h3 {
	margin-bottom: 20px;
}

.demoVideo {
	max-width: 600px;
	margin: auto;
}

.bandMembersContainer {
	margin: 40px 0;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.bandMembers {
	
}

.memberPhoto {
	width: 200px;
}

.memberPhoto img {
	box-shadow: 5px 5px 10px rgba(0,0,0,.5);
}

.memberName {
	padding-top: 6px;
}

.nostalgia {
	/*font-family: 'Shadows Into Light', cursive;*/
	font-size: 20px;
	font-weight: 700;
	padding: 10px 0;
	/*background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);
	color: #ccc;*/
	background: rgb(230,230,230);
	background: radial-gradient(circle, rgba(240,240,240,1) 1%, rgba(170,170,170,1) 30%);
	border: 2px solid black;
	position: absolute;
	transform: rotate(-45deg);
	top: 35px;
	left: -250px;
	width: 100%;
	box-shadow: 10px 10px 15px rgba(0,0,0,.5);
}

.videoContainer {
	margin: 40px 0;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.videos {
	
}

.videoPhoto img {
	box-shadow: 5px 5px 10px rgba(0,0,0,.5);
}

.videoName {
	padding-top: 6px;
}

.contact p{
	margin-bottom: 30px;
}

.contact a {
	color: #000;
	font-weight: 700;
}

.contact a:hover {
	color: #555;
}

footer {
	display: flex;
	flex: 0 1 auto;
	height: 60px;
	min-height: 60px;
	margin-top: 20px;
	background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);
	justify-content: center;
	align-items: center;
	color: #ccc;
}

.topnav {
    visibility: hidden;
    position: absolute;
}

@media all and (max-width: 660px) {
	
	h3 {
		font-size: 18px;
	}
	
	p {
		font-size: 15px;
	}
	
	main {
		margin: 0;
		padding: 0;
	}
	
	main img {
		max-width: 90%;
		height: auto;
	}
	
	
	.demoVideo {
		max-width: 90%;
	}
	
	.bandMembersContainer {
		margin: auto;
		width: 100%;
		gap: 10px;
	}
	
	.memberPhoto {
		max-width: 180px;
		height: auto;
	}
	
	header img {
	}
	
	header nav {
        visibility: hidden;
    }
	
	.nostalgia {
		top: 20px;
		left: -142px;
	}
	
/* Style the navigation menu */
.topnav {
    visibility: visible;
  overflow: hidden;
  /*background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);*/
  position: fixed;
    top: 0;
	right: 0;
    width: 50%;
    z-index: 10;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
    text-align: center;
	background-color: #000;
	font-variant: small-caps;
}
    
    .topnav a:last-of-type {
        border-bottom: 2px ridge #fff;
    }

/* Style the hamburger menu */
.topnav a.icon {
  background: none;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
    border: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
    visibility: hidden;
  background-color: #000;
  color: white;
}
	
}