/*Tag CSS*/

.tag {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  padding: 1em 2em;
  margin: 0.125em 1em;
  transition: color 0.5s, background 0.5s, border 0.5s;
  
}

.tag:after,
.tag:before {
  content: "";
  position: absolute;
}

/*punched hole*/
.tag:after {
  height: 0.5em;
  width: 0.5em;
  left: 0;
  top: 50%;
  margin-top: -0.25em;
  border-radius: 100%;
  background-color: currentColor;
}

/*Tag's tail*/
.tag:before {
  border: 1.5em solid transparent;
  right: 100%;
  top: 0;
  bottom: 0;
  border-right-color: inherit;
}

/*Tag Color Scheme.
  Background and border color should match
*/
.tag {
  background-color: #fff;
  border-color: #fff;
  color: white;
}

.tag:hover {
  background-color: #550000;
  border-color: #550000;
  color: white;
}

/* Some unneeded body styling*/
#yerlibody {
margin-left:-180px;
}