@charset "UTF-8";
/* CSS Document */
@-webkit-keyframes flash {
  0% {
	   border-bottom: 2px solid var(--main-text-color);
	  color: var(--main-text-color);
  }
50% {
   border-bottom: 2px solid #ff00c8;
		color:var(--eventual-color);
  }

100% {
	   border-bottom: 2px solid var(--main-text-color);
		 color: var(--main-text-color);
  }
}

@keyframes flash {
  0% {
	   border-bottom: 2px solid var(--main-text-color);
	  color: var(--main-text-color);
  }
50% {
   border-bottom: 2px solid #ff00c8;
		color:var(--eventual-color);
  }

100% {
	   border-bottom: 2px solid var(--main-text-color);
		 color: var(--main-text-color);
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}


@keyframes breathe {
	0% {
		opacity: 0;
	}
	
	}
	100% {
		opacity:1;
}

	}

