/* 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-color: black;
  color: red;
  font-family: Verdana;
}

h1 {
  color: #ff0000;
}

h2 {
  color: #9d00f9;
}

p {
  color: #00ff99;
}

a {
  color: #fff;
  text-shadow:
      0 0 7px #0ff,
      0 0 10px #0ff,
      0 0 21px #0ff,
      0 0 42px #0fa,
      0 0 82px #0fa,
      0 0 92px #0fa,
      0 0 102px #0fa,
      0 0 151px #0fa;
}

address {
  color: #00ccff;
}

li {
  color: #f5a9b8;
}

/*
Mohh~~~ no me mires tu,
Ya se' que te gusta mirarle las partes i'ntimas a los dema's
Asi' que no lo hagas, toma lo que escondo bajo mis ropas :/
.|. Asi' es, toma pito .|.
*/

strong {
  color: #fff;
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 92px #0fa,
    0 0 102px #0fa,
    0 0 151px #0fa;
}

i {
  color: #2288ff;
}

em {
  color: #0010fc;
  }

kbd {
  color: yellow;
}




