body 
{
	 background: #FFEBEB;
	text-align: center; 
	color: #551640;
}
 
h1
{
 font-size: 3em;
 }

h2 {
	line-height:25px;
}

footer a
{
	font-size: 1em;
	padding: 0px 20px;
}
footer a:visited
{
	color: blue;
}
footer a:hover, footer a.selected
{
	color: red;
}

.mainbody
{
	position:relative;
	left:20%;
	width:60%;
    line-height:20px;	
}

.bottomtext
{
	position:absolute;
	bottom:0px;
	left:0px;
}

.thumbnailcontainer
{
	border: 2px solid #551640;

}

.thumbnailcontainer img
{
	width: 150px;
	height: 150px;
	border: 1px solid #551640;
	padding: 5px;
}

#imageshow
{
	position:fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(153,153,153,0.5);
	text-align:center;
	z-index: 2;
	display: none;
}

#imageshow *
{
	position: relative;
	margin: 5px;
	color: white;
}

 @keyframes movingkeys
 {
	0% {top: -50px;}
	50% {top: 0px;}
	100% {top: -50px;}
 }
  @-webkit-keyframes movingkeys
 {
	0% {top: -50px;}
	50% {top: 0px;}
	100% {top: -50px;}
 }
 
  .whitekey
 {
   position: fixed;
   top: -50px;
   width: 35px;
   height: 200px;
   background: white;
   text-align: center;
   line-height:90%;
   font-size:1.5em;
   font-weight:bold;
   z-index:1;
   animation-name: movingkeys;
   animation-duration: 2s;
   animation-delay: 2s;
   animation-iteration-count: 2;
   -webkit-animation-name: movingkeys;
   -webkit-animation-duration: 2s;
   -webkit-animation-delay: 2s;
   -webkit-animation-iteration-count: 2;
 }
 
 .whitekey:hover
 {
	background:pink;
	cursor: pointer;
 }
 
 .blackkey
 {
   position: fixed;
   top: -50px;
   width: 35px;
   height: 100px;
   background: black;
   
   animation-name: movingkeys;
   animation-duration: 2s;
   animation-delay: 1s;
   animation-iteration-count: 2;
   -webkit-animation-name: movingkeys;
   -webkit-animation-duration: 2s;
   -webkit-animation-delay: 1s;
   -webkit-animation-iteration-count: 2;
 }