html {
  cursor: url("nyancursor.gif"), pointer;
  cursor: help;
  cursor: progress;
  cursor: url("images/nyancatcursor.gif"), auto;
}


body {
    color: white;
    font-family: "courier new";
    background-color: hotpink;
    background-image: url('images/output-onlinegiftools.gif');
    line-height: 30px;
}

h1 {
    text-align: center;
    font-size: 50px;
    color: hotpink;
    background-color: white;
    line-height: 50px;
}


@keyframes rainbow { 
    0%{background-position:0% 50%}
    50%{background-position:100% 25%}
    100%{background-position:0% 50%}
}

summary {
color: white;
font-size: 20px;
background-color: hotpink;
    }

details {
    background-color: hotpink;
}


a:link {
    background-color: white;
  color: lime;
}

a:visited {
    background-color: white;
  color: hotpink;
}

a:hover {
background-color: white;
  color: lime;
}

a:active {
  background-color: white;
    color: red;
}


.happyTrail {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f00;
  opacity: 0.8;
  pointer-events: none;
  
  animation-duration: 0.5s;
  animation-name: rainbowFade;
  animation-timing-function: ease;
}

@keyframes rainbowFade {
  0% {
    background: #f00;
  }
 
  20% {
    background: #f80;
  }
 
  40% {
    background: #ff0;
  }
  
  60% {
    background: #0f0;
  }
 
  80% {
    background: #00f;
		opacity: 0.8;
  }
 
  100% {
    background: #f0f;
    opacity: 0;
  }
}