body {
	background-color:rgb(1, 19, 13);
	background-size: cover;
	background-position: center;
	font-family: Arial, sans-serif;
	opacity: 20;
}
h1{color: aqua;font-size: xx-large;font-family: 'Times New Roman', Times, serif;align-items: center;}
h2{color: blue;}
h3{color:blue}
/* Rest of the CSS code */
button{
	color: rgb(241, 6, 77);
}
img{
	width: 250px;
	height: auto;
	align-items: center;
}
h1,h2,h3 {
	text-align: center;
}
ul {
	text-align: bottom;
	list-style: none;
	padding: 0;
	margin: 0;
	color: white;
}

h1 {
	font-size: 48px;
	animation: sparkle 2s linear infinite;
}
@keyframes sparkle {
	0% {
		color: white;
		text-shadow: none;
	}
	10% {
		color: #6933ff;
		text-shadow: 0 0 10px #54e441, 0 0 20px #3bcf60, 0 0 30px #FFFF33, 0 0 40px #FFFF33, 0 0 50px #FFFF33, 0 0 60px #FFFF33, 0 0 70px #FFFF33;
	}
	100% {
		color: white;
		text-shadow: none;
	}
}
p{
	color: rgb(9, 210, 236);
}
