@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
area:hover:after {
  content: attr(data-title);
  background: rgba(255,0,0,0.3);
  color: white;
  opacity: 1;
  height: 250px;
  width: 150px;
  position: absolute;
  text-align: center;
  margin-top: 140px;
  margin-left: 140px;
  left: 0;
  top: 0;
  border-radius: 10px;
  border-style: solid;
}
