@keyframes flash {
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
	background-color: rgb(25, 25, 25);
}
.txt {
	color: antiquewhite;
	font-family: monospace;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    animation: flash 1.5s ease infinite;
	margin: auto;
	font-size: 15px;
	background: -webkit-gradient(linear, left top, left bottom, from(#faebd7), to(#7D756B));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wm {
	color: aliceblue;
	font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-weight: 100;
	opacity: 0.4;
   	position: fixed;
   	left: 15px;
   	bottom: 5px;
	font-size: 10px;
}