/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html,body{
  margin: 0px;
  padding: 0px;
  height:100%;
  font-family:Helvetica;
  font-size:12px;
  background-image:url('shift2.gif');
  background-repeat:repeat;
  color:#000;
  text-align:justify;
  letter-spacing:0px;
  text-shadow: black;
}
.fader {
  animation: fadeIn 2.2s;
  -webkit-animation: fadeIn 2.2s;
  -moz-animation: fadeIn 2.2s;
  -o-animation: fadeIn 2.2s;
  -ms-animation: fadeIn 2.2s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

#box1{
position:relative;
width:auto;
min-height:100%;
margin:72px auto;
padding:8px;
}
#faint{
 background-color: black; 
}

#linkity{
position:absolute;
top:-23px;
left:7px;
line-height:10px;
text-align:left;
width:120px;
display:inline-block;
margin-right:-3px;
color:#0000aa;
-moz-border-radius:10px 10px 0px 0px;
-webkit-border-radius:10px 10px 0px 0px;
border-radius:10px 10px 0px 0px;
letter-spacing:2px;
border:1px solid #8CC0DE;
}

#linkity a:hover{
background-color:rgba(35,0,35,0.4);
border-bottom:1px solid #fff;
-moz-transition:.4s;
-webkit-transition:.4s;
transition:.4s;}

#songbox{
border-style: inset;
border: 4px inset #00EE00;
position:relative;
max-width:500px;
background-image:url('rplanks.png');
background-repeat:repeat;
margin:auto;
height:auto;
padding:8px;
margin-bottom:4px;

} 

h1{
text-align:center;
font-size:14px;
line-height:30px;
font-family:Verdana;
font-style:bold;
border-bottom:1px solid red;
letter-spacing:2px;
text-shadow: #000 1px 1px 5px;
margin: -2px 0px 0px -4px;
background-image:url('planks.jpg');
background-repeat:repeat;
filter: drop-shadow(0 0px 5px blue);
}

a{
color:#0000aa;
text-decoration:none;
font-style:italic;
}























/*placeholder*/