/* Base font */
html,
body {
  font-family: "MS UI Gothic", sans-serif;
}
/* 
To use this in HTML put
<p class="headertext pinkytext">Pink Header</p>
<p class="headertext eviltext">Evil Header</p> */
.headertext {
  font-size: 20px;
  font-weight: bold;
}

.pinkytext {
  color: #fff;
  text-shadow:
    -1px 0 #F279C8,
     0 1px #F279C8,
     1px 0 #F279C8,
     0 -1px #F279C8;
}

.eviltext {
  color: #55038C;
  text-shadow:
    -1px 0 #FF3737,
     0 1px #FFC080,
     1px 0 #FF9900,
     0 -1px #FF3737;
}
.glitch-text {
  font-weight: bold;
}