.legend {
  display: flex;
  flex-direction: row;
  z-index: 1;
  position: absolute;
}
.CVentry::after {
  display: none;
  content: attr(data-title);
  position: absolute;
  z-index: 2;
  border-radius: 1em;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 1em;
  /* height: 100%; */
  width: 100%;
}
.CVentry:hover::after {
  display: unset;
}
.CVentry[data-category="work"],
.CVentry[data-category="work"]::after {
  background-color: #54ab71;
}
.CVentry[data-category="hobbies"],
.CVentry[data-category="hobbies"]::after {
  background-color: #62c9db;
}
.CVentry[data-category="education"],
.CVentry[data-category="education"]::after {
  background-color: #466ba3;
}
.CVentry {
  background-color: #95a65f;
  height: 4em;
  border-radius: 1em;
  margin: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.CVentry > p {
  margin: 0;
}
