body {
  background-color: #000;
  overflow: hidden;
}
#root {
  font-size: 500px;
  text-align: center;
  color: #eee;
}
@keyframes fadeout {
	0%{
		opacity:1;
	}
	80%{
        opacity:0.5;
	}
	100% {
		opacity:0;
	}
}
.char {
    animation: fadeout 1s linear 0s 1 forwards;
}