.underline {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.underline::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0.9em;
  botom: 0;
  height: 0.15em;
  background: linear-gradient(140deg, var(--secondary), var(--primary-light));
  /*background-color: var(--accent-trans-90);*/
  transform: rotate(-1deg);
  /* Rotates the underline */
}
.glass-effect {
  backdrop-filter: blur(5px);
  /* Apply a blur effect */
  background-color: rgba(0, 0, 0, 0.17);
}
.heading-gradient {
  background: linear-gradient(140deg, var(--secondary), var(--primary-light));
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}
