/* 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;
}
 /*End of CSS reset */

 /* General CSS */
 header{
	background-color: rgb(54, 0, 141);
	width: 100%;
	text-align: center;
	padding: 15px 0 15px 0;
 }

 header h1{
	color: rgb(247, 247, 165);
	font-family: 'Mr Dafoe', cursive;
	font-size: 49px;
 }

 nav{
	background-color: rgb(54, 0, 141);
 }

 nav a{
	color: rgb(247, 247, 165);
	font-size: 35px;
	text-decoration: none;
	font-family: 'Ubuntu', sans-serif;
	text-align: center;
 }

 #mainMenu{
	display: block;
 }

 body{
	background-color: rgba(124, 86, 3, 0.25);
 }

 .topMost{
	box-shadow: -7px 12px 17px 1px rgb(0, 0, 0);
	margin-bottom: 0em;
	width: 100%;
}

/*PHP submit screen */
.formHead {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: rgb(247, 247, 165);
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
    background-color: rgb(120, 30, 194);
    padding: 5px 75px;
    border-radius: 15px;
    margin: 15px 5px 5px 5px;
    line-height: 35px;
}

.thanks {
    margin-bottom: 25%;
    width: 75%;
    box-sizing: border-box;
}

.thanksBody {
    background-color: rgba(124, 86, 3, 0.25);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer CSS */
.facebook{
	font-size: 25px;
	color: whitesmoke;	
	text-decoration: none;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.facebook:hover{
	color: rgb(247, 247, 165);
}

footer{
	margin-top: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	background-color: rgb(54, 0, 141);
	color: rgb(255, 255, 255);
	margin-top: 3em;
}

.location{
	grid-column: 3 / 4;
	grid-row: 1 / 3;
	padding-top: 17px;
}

.location h4{
	font-weight: bold;
	font-size: 20px;
}

.location p{
	font-size: 18px;
}

footer ul{
	grid-column: 2/3;
	grid-row: 1/3;
	padding-top: 17px;
	font-size: 18px;
	line-height: 25px;
}

.bottomNav a:link, .bottomNav a:visited{
    color: rgb(255, 255, 255);
    text-decoration: none;
	font-weight: bold;
}

.bottomNav{
	margin-top: auto;
	margin-bottom: auto;
}

.bottomNav a{
	width: 200px;
}

.bottomNav a:hover{
	color: rgb(247, 247, 165);
}

.copyright{
	grid-column: 1/4;
	grid-row: 3/4;
	padding-top: 20px;
} 

.contactFoot{
	margin-top: 150px;
}

.conInfo a:visited, .conInfo a::after, .conInfo a:hover, .conInfo a:link{
	color: whitesmoke;
	text-decoration: none;
}


.iframe{
	border-width: 0;
}

 /* Mobile Layout */
 @media screen and (max-width: 411px) {
	/* General CSS */

    #mainMenu{
        display: none;
    }

	header{
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding-bottom: 5px;
		width: 100%;
	}
	
	header h1{
		font-size: 4em;
		width: 15em;
		padding-left: .5em;
	}
	
	header .icon{
		font-size: 2.75em;
		color: rgb(247, 247, 165);
		width: 100%;
		padding-right: .5em;
	}

	nav{
		text-align: center;
		line-height: 2.5em;
		padding-bottom: 1em;
	}

	/* Home CSS */

	.top{
		display: flex;
		align-items: baseline;
		justify-content: center;
		box-shadow: 5px 10px 10px rgb(0, 0, 0) inset;
		background-image: url(images/hero.jpg);
		background-size: cover;
		background-position: 50% 50%;
		height: 25.75em;
		width: 100%;
		margin-bottom: 2em;
		box-sizing: border-box;
	}

	.above{
		background-color: rgb(120, 30, 194);
		color: rgb(247, 247, 165);
		text-shadow: -4px 0px 3px rgb(0, 0, 0);
		box-shadow: -4px 5px 3px black;
		padding: .25em 3em;
		font-size: 1.5em;
		border-radius: 15px;
		line-height: 1.5em;
		text-align: center;
		margin-top: 0.5em;
		box-sizing: border-box;
		width: 90%;
		box-sizing: border-box;
	}

	.bandButton{
		box-sizing: border-box;
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
		width: 100%;
		margin: auto;
		margin-top: 1.5em;
		padding: 1em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		align-items: center;
	}

	.bandButton p{
		margin-top: 1.5em;
	}

	.bandButton button{
		width: 100%;
		height: 5em;
		background-color: black;
		color: white;
		font-weight: bold;
		font-size: 1em;
		box-sizing: border-box;
	}

	.songButton{
		box-sizing: border-box;
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
		width: 100%;
		margin: auto;
		margin-top: 1.5em;
		padding: 1em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		align-items: center;
	}

	.songButton p{
		margin-top: 1.5em;
	}

	.songButton button{
		width: 100%;
		height: 5em;
		background-color: black;
		color: white;
		font-weight: bold;
		font-size: 1em;
		box-sizing: border-box;
	}

	.map{
		display: flex;
		width: 100%;
		margin: auto;
		align-items: center;
		flex-direction: column;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		box-sizing: border-box;
		margin-top: 2em;
	}

	.map iframe{
		width: 20em;
		height: 15em;
		width: 100% ;
	}

	.vidwT{
		display: flex;
		flex-direction: column;
		text-align: center;
		margin-top: 2em;
		width: 100%;
		box-sizing: border-box;
	}

	.vidwT h2{
		padding-bottom: 1em;
		font-size: 2em;
		font-weight: bold;
		text-shadow: -4px 0px 3px rgba(141, 141, 141, .75);
	}

	.mave{
		box-sizing: border-box;
		margin-bottom: 3em;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
	}

	.cowbell{
		box-sizing: border-box;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
	}

	iframe{
		width: 100%;
	}

	.location{
		width: 100%;
		box-sizing: border-box;
	}

	.bottomNav{
		width: 100%;
		box-sizing: border-box;
	}
	/*Contact Form CSS */

	input, textarea{
		width: 100%;
		font-size: 19px;
		font-family: Arial, Helvetica, sans-serif;
		border-radius: 15px;
		border: 0px black solid;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 35px;
		box-sizing: border-box;
	}
	
	.form p{
		text-align: center;
		margin: 10px auto;
	}

	.form{
		padding: 1.25em;
		box-sizing: border-box;
	}
	
	.conTop{
		line-height: 1.25em;
		width: 100%;
		margin: auto;
		border-radius: 75px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
	}

	.con1{
		padding: .25em;
		line-height: 35px;
		width: 13em;
		margin: auto;
		border-radius: 15px;
		margin-top: 1em;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 28px;
		font-weight: bold;
	}
	
	form span{
		color: red;
		font-size: 25px;
	}

	label{
		font-size: 20px;
		font-weight: bold;
	}
	
	#address{
		display: none;
	}
	
	.submit input{
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		font-weight: bolder;
	}

	/* Band CSS */

	.bandTop{
		line-height: 2.5em;
		width: 85%;
		margin: auto;
		border-radius: 15px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
		box-sizing: border-box;
	}

	.bandMem{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin: 2em auto 2em auto;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		padding: 2em;
	}

	.bandMem img{
		margin-bottom: 1em;
	}

	.bandMem h2{
		font-weight: bold;
		font-size: 1.75em;
	}

	/* Song List CSS */

	.songTop{
		line-height: 2.5em;
		width: 85%;
		margin: auto;
		border-radius: 15px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
		grid-column: 1/4;
		grid-row: 1/2;
		box-sizing: border-box;
	}

	.set{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin: 2em auto 2em auto;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		padding: 2em;
	}

	.set h2{
		font-weight: bold;
		font-size: 1.75em;
	}

	.set img{
		width: 20em;
		margin-bottom: 1em;
	}

	.setImg{
		width: 20em;
		height: 15em;
	}

	#s3Img{
		background-image: url(images/s3.jpg);
		background-size: cover;
		background-position: 50% 50%;
		margin-bottom: 1em;
		width: 100%;
		box-sizing: border-box;
	}

	#s4Img{
		background-image: url(images/s4.jpg);
		background-size: cover;
		background-position: 50% 50%;
		margin-bottom: 1em;
		width: 100%;
		box-sizing: border-box;
	}

	.set img{
		width: 100%;
		box-sizing: border-box;
	}

	.FD{
		display: flex;
		justify-self: center;
		padding: 2em 2em 2em 2em;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		margin: 2em auto 2em auto;
		width: 100%;
		box-sizing: border-box;
	}
}

 /*Tablet Layout */
@media screen and (min-width: 411px) and (max-width: 1023px) {
	/* General CSS */

    #mainMenu{
        display: none;
    }

	header{
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding-bottom: 5px;
		width: 100%;
	}
	
	header h1{
		font-size: 4em;
		width: 15em;
		padding-left: .5em;
	}
	
	header .icon{
		font-size: 2.75em;
		color: rgb(247, 247, 165);
		width: 100%;
		padding-right: .5em;
	}

	nav{
		text-align: center;
		line-height: 2.5em;
		padding-bottom: 1em;
	}

	/* Home CSS */

	.top{
		display: flex;
		align-items: baseline;
		justify-content: center;
		box-shadow: 5px 10px 10px rgb(0, 0, 0) inset;
		background-image: url(images/hero.jpg);
		background-size: cover;
		background-position: 50% 50%;
		height: 22em;
		width: 100%;
		margin-bottom: 2em;
		box-sizing: border-box;
	}

	.above{
		background-color: rgb(120, 30, 194);
		color: rgb(247, 247, 165);
		text-shadow: -4px 0px 3px rgb(0, 0, 0);
		box-shadow: -4px 5px 3px black;
		padding: .25em 3em;
		font-size: 1.5em;
		border-radius: 15px;
		line-height: 1.5em;
		text-align: center;
		margin-top: 0.75em;
		box-sizing: border-box;
		width: 90%;
		box-sizing: border-box;
	}

	.bandButton{
		box-sizing: border-box;
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
		width: 95%;
		margin: auto;
		margin-top: 1.75em;
		padding: 1em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		align-items: center;
	}

	.bandButton p{
		margin-top: 1.5em;
	}

	.bandButton button{
		width: 100%;
		height: 5em;
		background-color: black;
		color: white;
		font-weight: bold;
		font-size: 1em;
		box-sizing: border-box;
	}

	.songButton{
		box-sizing: border-box;
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
		width: 95%;
		margin: auto;
		margin-top: 3em;
		padding: 1em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		align-items: center;
	}

	.songButton p{
		margin-top: 1.5em;
	}

	.songButton button{
		width: 100%;
		height: 5em;
		background-color: black;
		color: white;
		font-weight: bold;
		font-size: 1em;
		box-sizing: border-box;
	}

	.map{
		display: flex;
		width: 95%;
		margin: auto;
		align-items: center;
		flex-direction: column;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		box-sizing: border-box;
		margin-top: 3em;
	}

	.map iframe{
		width: 20em;
		height: 15em;
		width: 100% ;
	}

	.vidwT{
		display: flex;
		flex-direction: column;
		text-align: center;
		margin: auto;
		margin-top: 3em;
		width: 95%;
		box-sizing: border-box;
	}

	.vidwT h2{
		padding-bottom: 1em;
		font-size: 2em;
		font-weight: bold;
		text-shadow: -4px 0px 3px rgba(141, 141, 141, .75);
	}

	.mave{
		box-sizing: border-box;
		margin-bottom: 3em;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
	}

	.cowbell{
		box-sizing: border-box;
		padding: 2em;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
	}

	iframe{
		width: 100%;
	}

	.location{
		width: 100%;
		box-sizing: border-box;
	}

	.bottomNav{
		width: 100%;
		box-sizing: border-box;
	}
	/*Contact Form CSS */

	input, textarea{
		width: 85%;
		font-size: 19px;
		font-family: Arial, Helvetica, sans-serif;
		border-radius: 15px;
		border: 0px black solid;
		padding-top: 5px;
		padding-bottom: 5px;
		line-height: 35px;
		box-sizing: border-box;
	}
	
	.form p{
		text-align: center;
		margin: 10px auto;
	}

	.form{
		padding: 1.25em;
		box-sizing: border-box;
	}
	
	.conTop{
		line-height: 1.25em;
		width: 85%;
		margin: auto;
		border-radius: 15px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
	}

	.con1{
		padding: .25em;
		line-height: 35px;
		width: 13em;
		margin: auto;
		border-radius: 15px;
		margin-top: 1em;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 28px;
		font-weight: bold;
	}
	
	form span{
		color: red;
		font-size: 25px;
	}

	label{
		font-size: 20px;
		font-weight: bold;
	}
	
	#address{
		display: none;
	}
	
	.submit input{
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		font-weight: bolder;
	}

	/* Band CSS */

	.bandTop{
		line-height: 2.5em;
		width: 85%;
		margin: auto;
		border-radius: 15px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
		box-sizing: border-box;
	}

	.bandMem{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin: 2em auto 2em auto;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		padding: 2em;
		width: 90%;
		box-sizing: border-box;
	}

	.bandMem img{
		margin-bottom: 1em;
	}

	.bandMem h2{
		font-weight: bold;
		font-size: 1.75em;
	}

	/* Song List CSS */

	.songTop{
		line-height: 2.5em;
		width: 85%;
		margin: auto;
		border-radius: 15px;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
		grid-column: 1/4;
		grid-row: 1/2;
		box-sizing: border-box;
	}

	.set{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin: 2em auto 2em auto;
		border: 3px rgb(0, 0, 0) solid;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		padding: 2em;
		width: 90%;
		box-sizing: border-box;
	}

	.set h2{
		font-weight: bold;
		font-size: 1.75em;
	}

	.set img{
		width: 20em;
		margin-bottom: 1em;
	}

	.setImg{
		width: 20em;
		height: 15em;
	}

	#s3Img{
		background-image: url(images/s3.jpg);
		background-size: cover;
		background-position: 50% 50%;
		margin-bottom: 1em;
		width: 100%;
		box-sizing: border-box;
	}

	#s4Img{
		background-image: url(images/s4.jpg);
		background-size: cover;
		background-position: 50% 50%;
		margin-bottom: 1em;
		width: 100%;
		box-sizing: border-box;
	}

	.set img{
		width: 100%;
		box-sizing: border-box;
	}

	.FD{
		display: flex;
		justify-self: center;
		padding: 2em 2em 2em 2em;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		margin: 2em auto 2em auto;
		width: 90%;
		height: 30em;
		box-sizing: border-box;
	}
}


 /*Desktop CSS */
 @media screen and (min-width: 1024px) {

	/* General CSS */
	.icon{
		display: none;
	}

	header h1{
		font-size: 7em;
	}

	nav ul{
		display: flex;
		flex-direction: row;
		margin: auto;
		align-content: center;
		justify-content: center;
		font-size: 1.75em;
	}

	nav li{
		width: 75em;
		text-align: center;
	}
	
	nav a{
		color: rgb(247, 247, 165);
		font-size: 35px;
		text-decoration: none;
		font-family: 'Ubuntu', sans-serif;
		text-align: center;
		transition: all 1.5s ease-out;
	 }
	
	 nav a:hover{
		color: rgb(252, 252, 194);
	 }

	 nav a::content{
		font-weight: bold;
	 }

	 .selected{
		background-color: rgb(120, 30, 194);
		padding: 2px 10px;
		border-radius: 15px;
	 }

	#mainMenu{
		padding-bottom: 15px;
		display: block;
	}

	.topMost{
		box-shadow: -9px -1px 15px 12px rgb(0, 0, 0);
		margin-bottom: 0em;
	}

	

	/* Home CSS */

	.map{
		width: 70vw;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		margin: auto;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		padding: 2em;
		margin-top: 3em;
	}
	
	.map iframe{
		background-color: rgba(255, 255, 255, .75);
		margin: 5em;
		box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
		width: 70vw;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		margin: auto;
	}

	.bandButton{
		width: 70vw;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		margin: auto;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		padding: 2em;
	}
	
	.bandButtonImg{
		width: 22em;
		height: 17em;
		background-image: url(images/band.png);
		background-size: cover;
		background-position: 50% 50%;

	}
	
	.bandButton p{
		width: 15em;
		font-size: 2em;
		padding: 0 10px 0 25px;
		color: black;
	}
	
	.bandButton button{
		background-color: rgb(8, 47, 86);
		color: whitesmoke;
		width: 8em;
		height: 100px;
		font-size: 22px;
	}

	.songButton{
		width: 70vw;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		margin: auto;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		padding: 2em;
		margin-top: 3em;
	}
	
	.songButtonImg{
		width: 22em;
		height: 17em;
		background-image: url(images/songButton.jpg);
		background-size: cover;
		background-position: 50% 50%;

	}
	
	.songButton p{
		width: 15em;
		font-size: 2em;
		padding: 0 10px 0 25px;
		color: black;
	}
	
	.songButton button{
		background-color: rgb(8, 47, 86);
		color: whitesmoke;
		width: 8em;
		height: 100px;
		font-size: 22px;
	}

	.vidH2{
		text-align: center;
		padding-bottom: 1em;
		font-size: 2em;
		font-weight: bold;
	}

	.vids{
		display: flex;
		flex-direction: row;
		margin: auto;
	}

	.mave{
		grid-column: 1/2;
		grid-row: 1/2;
		width: 45vw;
		height: 20em;
		padding-right: 1em;
	}

	.cowbell{
		grid-column: 2/3;
		grid-row: 1/2;
		width: 45vw;
		height: 20em;
		padding-left: 1em;
	}

	.vidwT{
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		padding: 3em;
		width: 55em;
		margin: auto;
		margin-top: 5em;
		width: 70vw;
		padding: 2em;
	}


	.top{
		display: flex;
		align-items: baseline;
		justify-content: center;
		box-shadow: 5px 10px 10px rgb(0, 0, 0) inset;
		background-image: url(images/hero.jpg);
		background-size: cover;
		background-position: 50% 50%;
		height: 25.75em;
		width: auto;
		margin-bottom: 5em;
	}

	.above{
		background-color: rgb(120, 30, 194);
		color: rgb(247, 247, 165);
		text-shadow: -4px 0px 3px rgb(0, 0, 0);
		box-shadow: -4px 5px 3px black;
		padding: .25em 3em;
		font-size: 2em;
		border-radius: 15px;
		line-height: 1.5em;
		text-align: center;
		margin-top: 0.5em;
	}

	/* Contact Form CSS */

	.conTop{
		line-height: 2.5em;
		width: clamp(22em, 43%, 100%);
		margin: auto;
		margin-top: 25px;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border-radius: 15px;
		border: 1px black solid;
		font-size: 1.75em;
		text-align: center;
		box-sizing: border-box;
		font-weight: bold;
		margin-bottom: 2em;
	}

	input, textarea{
		width: clamp(40em, 55%, 100%);
		font-size: 20px;
		font-family: Arial, Helvetica, sans-serif;
		border-radius: 15px;
		border: 0px black solid;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 1.25em;
		line-height: 35px;
		margin-top: .5em;
		box-sizing: border-box;
	}
	
	.form p{
		text-align: center;
		margin: .5em auto;
		box-sizing: border-box;
	}

	form p{
		padding-bottom: 2em;
	}
	
	form span{
		color: red;
		font-size: 25px;
	}

	label{
		font-size: 20px;
		font-weight: bold;
	}
	
	#address{
		display: none;
	}
	
	.submit input{
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		font-weight: bolder;
	}

	.phpFoot{
		margin-top: auto;
	}

	/*Band CSS */

	.bandMain{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 10em;
	}

	.bandTop{
		line-height: 2.5em;
		width: 20em;
		margin: auto;
		border-radius: 15px;
		margin-top: .5em;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 3em;
		text-align: center;
		grid-column: 1/4;
		grid-row: 1/2;
	}
	
	.bandMem{
		padding: 2em 3em 2em 3em;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		margin: 2em 0 2em 0;
	}
	
	.bandMem img{
		text-align: left;
	}
	
	.bandCon{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 30px 25px;
	}
	
	.michael{
		grid-column: 1/4;
		grid-row: 2/3;
	}
	
	.bandMem h2{
		grid-column: 1/3;
		grid-row: 1/2;
		font-size: 2em;
		font-weight: bolder;
	}
	
	.bandMem p{
		grid-column: 2/3;
		grid-row: 3/4;
		width: 2em;
		font-size: 1.5em;
		padding: 0 1em 0 1em;
		display: flex;
		align-self: center;
		width: 20em;
		text-align: center;
		margin: 0 auto 0 auto;
	}
	
	.bandMem img{
		grid-column: 1/2;
		grid-row: 3/4;
		width: 22em;
		display: flex;
		justify-self: center;
		align-self: center;
	}

	.greg{
		grid-column: 1/4;
		grid-row: 3/4;
		text-align: center;

	}

	.greg img{
		padding-top: 2em;
	}

	.greg h2{
		width: 10em;
	}

	.bob{
		grid-column: 1/4;
		grid-row: 4/5;
	}

	.bob p{
		font-size: 1.25em;
		width: 24.25em;
	}

	.john{
		grid-column: 1/4;
		grid-row: 5/6;
	}

	.john img{
		padding-top: 4em;
	}

	.john p{
		padding-top: 4em;
	}

	.john h2{
		width: 10em;
	}

	.miles{
		grid-column: 1/4;
		grid-row: 6/7;
	}

	.miles img{
		padding-top: 5em;
	}

	.miles p{
		padding-top: 5em;
	}

	.miles h2{
		width: 10em;
	}

	.dave{
		grid-column: 1/4;
		grid-row: 7/8;
	}

	.dave img{
		padding-top: 3em;
	}

	.dave p{
		padding-top: 3em;
	}

	.rich{
		grid-column: 1/4;
		grid-row: 8/9;
	}

	.nuss{
		grid-column: 1/4;
		grid-row: 9/10;
	}

	.look{
		grid-column: 1/4;
		grid-row: 10/11;
	}

	.david{
		grid-column: 1/4;
		grid-row: 11/12;
	}

	.jo{
		grid-column: 1/4;
		grid-row: 12/13;
		place-items: center;
	}

	.jo h2{
		width: 10em;
	}

	/*Song CSS */
	.songMain{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 10em;
	}

	.songTop{
		line-height: 2.5em;
		width: 20em;
		margin: auto;
		border-radius: 15px;
		margin-top: .5em;
		color: rgb(247, 247, 165);
		background-color: rgb(120, 30, 194);
		border: 1px black solid;
		font-size: 3em;
		text-align: center;
		grid-column: 1/4;
		grid-row: 1/2;
	}
	
	.set{
		padding: 2em 3em 2em 3em;
		display: flex;
		place-self: center;
		flex-direction: row;
		align-items: center;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		margin: 2em 0 2em 0;
		width: 85%;
		box-sizing: border-box;
		place-content: center;
	}

	.songCon{
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 30px 25px;
	}

	.s1{
		grid-column: 1/4;
		grid-row: 2/3;
	}

	.s2{
		grid-column: 1/4;
		grid-row: 3/4;
	}

	.s3{
		grid-column: 1/4;
		grid-row: 4/5;
	}

	.s4{
		grid-column: 1/4;
		grid-row: 5/6;
	}

	.s5{
		grid-column: 1/4;
		grid-row: 6/7;
	}
	
	.set h2{
		grid-column: 1/3;
		grid-row: 1/2;
		font-size: 2em;
		font-weight: bolder;
	}
	
	.set ul{
		grid-column: 2/3;
		grid-row: 3/4;
		width: 2em;
		font-size: 1.5em;
		padding: 0 1em 0 1em;
		display: flex;
		align-self: center;
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		line-height: 1.25em;
		box-sizing: border-box;
		margin: 0 auto 0 auto;
	}
	
	.set img{
		grid-column: 1/2;
		grid-row: 3/4;
		width: 24em;
	}

	.setImg{
		grid-column: 1/2;
		grid-row: 2/4;
		width: 24em;
		height: 22em;
		display: flex;
		align-self: center;
		margin: auto;
		justify-self: center;
		width: 100%;
		box-sizing: border-box;
	}

	.s2 img{
		width: 26em;
		height: auto;
		margin: auto;
	}

	#s3Img{
		background-image: url(images/s3.jpg);
		background-size: cover;
		background-position: 50% 50%;
	}

	#s4Img{
		background-image: url(images/s4.jpg);
		background-size: cover;
		background-position: 50% 50%;
		padding-top: 2em;
	}

	.s4 ul{
		padding-top: 2em;
		padding-bottom: 2em;
	}

	.s5 img{
		display: flex;
		justify-self: center;
		align-self: center;
	}

	.FD{
		grid-column: 1/4;
		grid-row: 7/8;
		display: flex;
		justify-self: center;
		padding: 2em 3em 2em 3em;
		border: 3px black outset;
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
		margin: 2em 0 2em 0;
		width: 85%;
		height: 70vh;
		box-sizing: border-box;
	}

	.s2 .song{
		width: 26em;
		grid-column: 1/2;
		display: flex;
		justify-self: center;
		flex-direction: column;
	}

	.s2 hr{
		width: 26em;
	}
	
 }

 .hover-animation {
	position: relative;
	text-decoration: none;
}

.hover-animation::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	color: rgb(255, 255, 255);
	-webkit-transform-origin: bottom left;
		-ms-transform-origin: bottom left;
			transform-origin: bottom left;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: -webkit-transform 0.5s ease;
	-o-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	-webkit-transform: scaleX(0);
		-ms-transform: scaleX(0);
			transform: scaleX(0);
}

.hover-animation:hover::after {
	-webkit-transform: scaleX(1);
		-ms-transform: scaleX(1);
			transform: scaleX(1);
	color: rgb(224, 224, 224);
}

.hover-animation:hover {
	color: rgb(224, 224, 224);
}

p{
	font-family: Arial, Helvetica, sans-serif;
}

.bandMem h2, .set h2{
	font-family: Arial, Helvetica, sans-serif;
}