body {
  background-image: url("bg-scroll.gif");
  color: lightpink;
  font-family: "Comic Sans MS";
}


/*
Source - https://stackoverflow.com/a
Posted by Webdeveloper_Jelle
Retrieved 2025-12-18, License - CC BY-SA 4.0
*/

p {
  top: 50%;
  right: 50%;
  height: 50%;
  padding: 10px;
  border: 2px solid darkblue;
  margin: 0;
  background-image: url("text-bg-scroll.gif");
  text-align: center;
}

h1 {
  color: blue;
  padding: 10px;
  border: 2px solid darkblue;
  margin: 0;
  background-color: lightpink;
  align: center;
  
  -webkit-text-stroke-color: darkblue;
  -webkit-text-stroke-width: 2px;
  text-align: center;
}

/* Unvisited link */
a:link {
  color: lightpink;
}

/* Visited link */
a:visited {
  color: hotpink;
}

/* Mouse over link */
a:hover {
  color: pink;
}

/* Link in the moment of being clicked */
a:active {
  color: deeppink
}