body {
	font-family: Arial Black;
	text-align: center;
	
	display: flex; 
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	
	font-size: 40px;
	}

body {
	animation: bgflash 3s infinite alternate;
	background-image: url("logoLnB.png");
	background-size: 505px;
	background-repeat: repeat; }
	
@keyframes bgflash {
	0% {
		background-color: #ff00ff;
		}
	100% {
		background-color: #ccff00;
		}
	}