/* 
	dark blue: 002E5D 


*/

body, nav, main, footer, figcaption, figure { display: block;}

.title{
	font-family: 'Pacifico', cursive;
	font-size: 2.5em;
	color: #002E5D;
}

body{
	font-family:  Helvetica, "Helvetica Light", sans-serif;
	background-color: #72C6E5;
	margin: 0;
	text-align: center;
}
nav{
	background-color: #002E5D;
	height: 250px;
	width: 100%;
}

nav ul{
	position: absolute;
	left: 500px;
	top: 70px;
	margin-right: 20px;
}

nav ul li{
	display: inline;
	font-family: sans-serif;
	font-size: 140%;
	color: #72C6E5;
}

nav ul li a{
	color: #bee5f3;
	font-weight: bold;
	text-decoration: none;
}

nav ul li a:hover{
	color: #FFFFFF;
}
table td{
	padding: 20px;
}

footer{
	background-color: #002E5D;
	padding: 20px;
	color: #72C6E5;
	bottom: 100%;
}

footer a{
	color: #bee5f3;
}

footer a:hover{
	color: white;
}


/*  -------------------------------------------------------------------------------------- */

/*
 * Keyframes
 */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/*
 * CSS Page Transitions
 * Don't forget to add vendor prefixes!
 */
.m-scene {
  /** Basic styles for an animated element */
  .scene_element {
    -moz-animation-duration: 3s;
    -moz-transition-timing-function: ease-in;
    -moz-animation-fill-mode: both;

  }

  /** An element that fades in */
  .scene_element--fadein {
    -moz-animation-name: fadeIn;
  }

  /** An element that fades in and slides up */
  .scene_element--fadeinup {
    -moz-animation-name: fadeInUp;
  }

  /** An element that fades in and slides from the right */
  .scene_element--fadeinright {
    -moz-animation-name: fadeInRight;
  }
}
/*  ===================================== 
               Song Search
    ===================================== */

#songList li a {
	text-decoration: none;
	color: black; 
}

#songSearchBar {
  background-image: url('/Images/searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  width: 85%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#songList {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#songList li{
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block;
  width: 80%;
  align: center;
  margin: auto;
}

#songList li:hover:not(.header) {
  background-color: #bebebe;
}