/* 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." */

body {
  background-image: url("/horse gifs/bajook.png");
  background-size: 20%;
  background-repeat: repeat;
  font-family: "Trebuchet MS";
  color: pink;
  text-shadow: 2px 2px black;
}
img {
  border: 5px solid;
  background: hotpink;
}
a:link {
  color:hotpink;
}
a:visited {
  color:violet;
}
a:active {
  color:white;
}
a>text:hover { font-size: 30pt; }

.rainbow {
  background-image: linear-gradient(to left, blue, blue, blue, lime, lime, lime, orange, orange, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-image .25s ease-in-out;
}
.angeldevil {
  color:pink
}
.angeloverlay {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-image: url("/horse gifs/two_sides_horse.gif");
}
.angeldevil:hover .angeloverlay {
  opacity: 1;
}