:CLBI Extra/styles.css

.text-box {
  position: relative;
  cursor: pointer;
}

.text-box .default-text {
  display: inline;

}

.text-box .hover-text {
  display: none;
}

.text-box:hover .default-text {
  display: none;
}

.text-box:hover .hover-text {
  display: inline;
}

/* By D0H-A 오류 많을거같음 누군가 고쳐줘 */