/* only use css when necessary. */
/* change da world. my final message. goodbye.*/

body {
  background-image: url("purple_wind.png");
  color: white;
  font-family: Eras ITC;
}
.stop-sign {
    position: relative;
    z-index: -1;
    margin-top: -90%;
    animation: spinny 60s linear infinite;
}
@keyframes spinny {
    from {rotate: 0deg;}
    to {rotate: 360deg;}
}
.banner {
    margin-top: -100px;
}
a:visited {
    color: aquamarine;
}