/* 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 */

/* Desktop */
@media screen and (min-width: 1024px){
	body{
		display: flex;
		min-height: 100vh;
		flex-direction: column;
		line-height: 1.25;
	}

	header{
		width: 100%;
		color: white;
		background-color: black;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#title{
		font-size: 4em;
		text-align: center;
		font-family: 'Dancing Script', cursive;
		font-weight: bold;
		margin: 10px auto;
		align-self: center;
		text-align: center;
	}

	#logo{
		width: 75px;
		margin: auto;
	}

	#media{
		margin: auto;
		text-align: center;
	}

	#mediaMobile{
		display: none;
	}

	#media a{
		font-size: 40px;
		margin: auto;
		color: white;
	}

	#icon{
		display: none;
	}

	#menu{
		width: 100%;
	}

	#menu ul{
		display: flex;
		justify-content: center;
		margin: 10px 0;
		list-style-type: none;
	}

	#menu li{
		width: 200px;
		text-align: center;
	}

	#menu a{
		text-align: center;
		text-decoration: none;
		font-size: 1.5em;
		color: black;
	}

	#menu a {
		display: block;
		position: relative;
		overflow: hidden;
	}

	#menu a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 0.1em;
		background-color: black;
		opacity: 0;
  		transition: opacity 300ms, transform 300ms;
		transform: translate3d(-100%, 0, 0);
		opacity: 1;
	}

	#menu a:hover::after, #menu a:focus::after {
  		opacity: 1;
  		transform: translate3d(0, 0, 0);
	}

	@keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}

	#banner{
		width: 100%;
		position: relative;
	}

	#banner p{
		text-align: center;
		font-size: 10em;
		font-weight: bold;
		color: white;
		font-family: 'Dancing Script', cursive;
		position: absolute;
		width: 100%;
		top: 35%;
		animation: fadeIn 3s;
	}

	#banner #image{
		width: 100%;
	}

	/* Home Page */
	#mainHome{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainHome .text{
		display: flex;
		justify-content: space-around;
		width: 100%;
		margin: 10px 0;
	}

	#mainHome h2{
		width: 100%;
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
	}

	.text p{
		text-align: left;
		font-size: 1.5em;
		width: 500px;
	}

	.textImg img{
		width: 400px;
	}

	/* About Page */
	#mainAbout{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainAbout .text{
		display: flex;
		justify-content: space-around;
		width: 100%;
		margin: 10px 0;
	}

	#mainAbout h2{
		width: 100%;
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
	}

	#mainAbout h3{
		font-size: 1.75em;
		font-weight: bold;
	}

	#mainAbout h4{
		font-size: 1.6em;
		font-style: oblique;
	}

	#mainAbout p{
		font-size: 1.5em;
		width: 500px;
	}

	#mainAbout img{
		width: 400px;
	}

	/* Portfolio Page */
	#mainPortfolio{
		display: flex;
		flex-direction: column;
		margin: 10px 0;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
	}

	.song{
		display: flex;
		justify-content: space-around;
		width: 100%;
	}

	#mainPortfolio h2{
		width: 100%;
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
	}

	.song h3{
		font-size: 1.75em;
		font-weight: bold;
	}
	
	.song div{
		margin: 10px 0;
		width: 400px;
		font-family: Arial, Helvetica, sans-serif;
	}

	.song li{
		font-size: 1.5em;
	}

	.videos{
		width: 400px;
		display: flex;
		justify-content: center;
		margin: 10px 0;
	}

	.videos iframe{
		width: 400px;
		height: 250px;
	}

	/* Contact Page */
	#mainContact{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
		background-image: url(images/stage.jpg);
		background-size: cover;
		background-position: center;
	}

	#form{
		width: 500px;
		height: 500px;
		background-color: white;
		margin: 10px 0 5px 0;
		display: flex;
		flex-direction: column;
	}

	#form h2{
		width: 100%;
		text-align: center;
		font-size: 2cm;
		padding: 10px 0;
		background-color: black; 
		color: white;
	}

	#form p{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin: 10px 0;
	}

	#form label{
		font-size: 1.5em;
		margin: 0 10px;
	}

	#form textarea, #form input{
		width: 100%;
		max-height: 45px;
		font-size: 1.25em;
		margin: 0 10px;
	}

	#form #address{
		display: none;
	}

	#form #submitButton input{
		background-color: black;
		color: white;
	}
	
	#form span{
		color: red;
	}

	#map{
		margin: 5px 0 10px 0;
	}

	#map iframe{
		width: 500px;
		height: 500px;
	}

	/* PHP Submission Page */
	#mainSubmit{
		display: flex;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainSubmit h2{
		text-align: center;
		font-size: 3em;
		margin: 20px 0;
	}

	/*Footer*/
	footer{
		background-color: black;
		color: white;
		font-size: 1.25em;
		margin-top: auto;
		font-family: Arial, Helvetica, sans-serif;
	}

	footer ul{
		margin: 5px 100px 0;
		list-style: none;
		display: flex;
		flex-direction: column;
	}

	footer li{
		text-align: center;
		margin: 5px 0;
	}

	footer p{
		text-align: center;
	}
}

/*Mobile*/
@media screen and (min-width: 1px) and (max-width: 412px){
	body{
		display: flex;
		min-height: 100vh;
		flex-direction: column;
		line-height: 1.25;
	}

	header{
		width: 100%;
		color: white;
		background-color: black;
		display: flex;
		align-items: center;
		justify-content: space-around;
	}

	@keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}

	#title{
		font-size: 2.75em;
		text-align: center;
		font-family: 'Dancing Script', cursive;
		font-weight: bold;
		margin: 10px 0;
		align-self: center;
		text-align: center;
	}

	#logo{
		width: 60px;
	}

	#media{
		display: none;
		text-align: center;
	}

	#icon{
		display: block;
		font-size: 2.75em;
		color: white;
	}

	#menu{
		width: 100%;
		display: none;
	}

	#menu ul{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
	}

	#menu li{
		text-align: center;
		padding: 5px 0;
		width: 100%;
		border-bottom: black solid 2px;
	}

	#menu a{
		text-align: center;
		text-decoration: none;
		font-size: 1.5em;
		color: black;
	}

	#mediaMobile{
		text-align: center;
	}

	#mediaMobile a{
		font-size: 30px;
		color: black;
	}

	/* Banner */
	#banner{
		width: 100%;
		position: relative;
	}

	#banner p{
		text-align: center;
		font-size: 4em;
		font-weight: bold;
		color: white;
		font-family: 'Dancing Script', cursive;
		position: absolute;
		width: 100%;
		top: 35%;
		animation: fadeIn 3s;
	}

	#banner #image{
		width: 100%;
		height: auto;
	}

	/* Home Page */
	#mainHome{
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainHome .text{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 10px 0;
	}

	#mainHome h2{
		width: 100%;
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
	}

	.text p{
		text-align: left;
		font-size: 1.5em;
	}

	.textImg img{
		width: 350px;
	}

	/* About Page */
	#mainAbout{
		width: 100%;
		display: flex;
		flex-direction: column;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainAbout .text{
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
	}

	#mainAbout h2{
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
	}

	#mainAbout h3{
		font-size: 1.75em;
		font-weight: bold;
	}

	#mainAbout h4{
		font-size: 1.6em;
		font-style: oblique;
	}

	#mainAbout p{
		font-size: 1.5em;
	}

	.desc{
		width: 350px;
	}

	#mainAbout img{
		width: 350px;
	}

	/* Portfolio Page */
	#mainPortfolio{
		display: flex;
		flex-direction: column;
		margin: 10px 0;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	.song{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
	}

	#mainPortfolio h2{
		width: 100%;
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin: 10px 0;
		font-family: Arial, Helvetica, sans-serif;
	}

	.song h3{
		font-size: 1.75em;
		font-weight: bold;
	}
	
	.song div{
		margin: 10px 0;
		width: 350px;
	}

	.song li{
		font-size: 1.5em;
	}

	.videos{
		width: 350px;
		display: flex;
		justify-content: center;
		margin: 10px 0;
	}

	.videos iframe{
		width: 350px;
		height: 200px;
	}

	/* Contact Page */
	#mainContact{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
		background-image: url(images/stage.jpg);
		background-size: cover;
		background-position: center;
	}

	#form{
		width: 300px;
		height: 500px;
		background-color: white;
		margin: 10px 0 5px 0;
		display: flex;
		flex-direction: column;
	}

	#form h2{
		width: 100%;
		text-align: center;
		font-size: 3em;
		padding: 10px 0;
		background-color: black; 
		color: white;
	}

	#form p{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin: 20px 0;
	}

	#form label{
		font-size: 1.5em;
		margin: 0 10px;
	}

	#form textarea, #form input{
		width: 100%;
		max-height: 45px;
		font-size: 1.25em;
		margin: 0 10px;
	}

	#form #address{
		display: none;
	}

	#form #submitButton input{
		background-color: black;
		color: white;
	}
	
	#form span{
		color: red;
	}

	#map{
		margin: 5px 0 10px 0;
	}

	#map iframe{
		width: 300px;
		height: 300px;
	}

	/* PHP Submission Page */
	#mainSubmit{
		display: flex;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		font-family: Arial, Helvetica, sans-serif;
		line-height: 1.25;
	}

	#mainSubmit h2{
		text-align: center;
		font-size: 3em;
		margin: 20px 0;
	}

	/*Footer*/
	footer{
		font-family: Arial, Helvetica, sans-serif;
		background-color: black;
		color: white;
		font-size: 1.25em;
		margin-top: auto;
	}

	footer ul{
		margin: 10px 0 0;
		list-style: none;
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
	}
	
	footer p{
		text-align: center;
		margin: 5px 0;
	}

	footer li{
		text-align: center;
		margin: 5px 0;
	}
}