h1 {
  color: #000000;
  background-color: #ffffff;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #49ff18,
    0 0 30px #49ff18, 0 0 40px #49ff18, 0 0 55px #49ff18, 0 0 75px #49ff18;
}
/*This code is from CSS cheat sheet website*/
h2 {
  -webkit-box-shadow: 14px -5px 22px 6px rgba(0, 0, 0, 0.76);
  box-shadow: 14px -5px 22px 6px rgba(0, 0, 0, 0.76);
}
/*This code is also from CSS cheat sheet website*/

h3 {
  color: #9c4919;
  background-color: #ffd300;
}
/* just some random colors poped out of my mind*/
/*I sherch hex color to find the color that I wnat to use*/

h4 {
  color: #000000;
  background: #ffffff;
  text-shadow: -5px 5px 0px #00e6e6, -10px 10px 0px #01cccc,
    -15px 15px 0px #00bdbd;
  color: #000000;
  background: #eaff75;
}

.CCC {
  border: 4px double #ffee58;
  border-radius: 20px;
}
/*a simple border*/

.skills {
  color: #000000;
  background-color: #ffffff;
  text-shadow: #fff 0 -1px 4px, #ff0 0 -2px 10px, #ff8000 0 -10px 20px,
    red 0 -18px 40px;
}

.ter {
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  letter-spacing: -1.2px;
  word-spacing: 6px;
  color: #000000;
  font-weight: 700;
  text-decoration: overline solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: small-caps;
  text-transform: none;
}
/* copied from CSS cheat sheet*/
.cor {
  border-width: 3px;
  border-style: dashed;
  border-color: rgba(28, 110, 164, 0.48);
} /**/
.link {
  color: #000000;
  background-color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a,
    0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222,
    0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a,
    0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212,
    0 22px 30px rgba(0, 0, 0, 0.9);
}

.a {
  background: #047ea4;
  background: -moz-linear-gradient(
    -45deg,
    #047ea4 0%,
    #46cbc6 67%,
    #166675 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    #047ea4 0%,
    #46cbc6 67%,
    #166675 100%
  );
  background: linear-gradient(135deg, #047ea4 0%, #46cbc6 67%, #166675 100%);
}
/*from csds cheat sheet*/
