html, body { 
	height: 100%; 
	overflow: hidden; 
  }

body {
  background-color: rgba(17, 17, 17, 1);
  /* background: radial-gradient(
    circle closest-corner at center 50%,
    rgb(34, 34, 34),
    rgb(0, 0, 0) 40%
  ) no-repeat; */
}
.splash{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.splash img {
	transform: scale(.5);
	filter: brightness(0) invert(.2) opacity(.1);
	animation: blink-animation 5s  infinite ease-in-out;
		  -webkit-animation: blink-animation 5s infinite ease-in-out ;
  }
  @keyframes blink-animation {
	0% {
	  filter: none;
	}
  }
  @keyframes blink-animation {
	  25% {
		filter: none;
	  }
	}
	@-webkit-keyframes blink-animation {
	  50% {
		filter: none;
	  }
	}
	@-webkit-keyframes blink-animation {
	  75% {
		filter: none;
	  }
	}
	@-webkit-keyframes blink-animation {
	  100% {

		filter: none;
	  }
	}