html{
  cursor: url(/allPics/graphics/guitar.png);
}

body {
  color: white;
  
  /* change cursor picture, only works with 32*32px image */  
  cursor: url(/allPics/graphics/guitar.png), auto;
  
  font-family: "Lucida Console", "Courier New", monospace;
  background-image: url("/allPics/graphics/wallpaper.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
}

/* load the powerpuff girls font */
@font-face {
  src: url(/font/powerpuff.ttf);
  font-family: powerpuff;
}

/* general link */
a:link {
  color: white;
  cursor: url(/allPics/graphics/guitar.png), auto;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: rgb(239,239,239);
}

/* selected link */
a:active {
  color: white;
}

#fullTitle{
  text-align: center;
  padding: 7px;
  margin:auto;
  background-color: rgb(242,179,255);
  width:800px;
  border-radius:5px;
}

h1, h2{
  font-family: powerpuff;
}

#collection{
  position: absolute;
  margin-left:100px;
  margin-right:100px;
  
}


#blinkies{
  background-color: rgba(242,179,255,0.9);
  margin:auto;
  margin-bottom:20px;
  margin-top:20px;
}

.graphics{
  padding:30px;
  padding-top:5px;
  border-radius:5px;
}

#stamps{
  background-color: rgba(242,179,255,0.9);
  margin-bottom:20px;
}

#buttons{
  background-color: rgba(242,179,255,0.9);
  margin-bottom:40px;
}

::-moz-selection { /* Code for Firefox */
  color: pink;
  background: white;
}

::selection {
  color: pink;
  background: white;
}