/* black espresso theme css! */
body {
	background: linear-gradient(-45deg, #000000, #a70505, #000000, #810f0f);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite, fadeInAnimation ease 3s;
	height: 100%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

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