body {
	background-color: black;
	color: white;
}

table {
	border-collapse: collapse;
	width: 50%;
	margin: 0 auto;
}

th, td {
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

th {
	background-color: #4CAF50;
	color: white;
}

.heading {
	text-align: center;
}

.fire:nth-child(1) {
	top: 50%;
	left: 10%;
	animation-delay: 0.1s;
}

.fire:nth-child(2) {
	top: 10%;
	left: 20%;
	animation-delay: 0.3s;
}

.fire:nth-child(3) {
	top: 70%;
	left: 30%;
	animation-delay: 0.5s;
}

.fire:nth-child(4) {
	top: 40%;
	left: 40%;
	animation-delay: 0.7s;
}

.fire:nth-child(5) {
	top: 90%;
	left: 50%;
	animation-delay: 0.9s;
}

.fire-background {
	background: black;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.fire {
	position: absolute;
	width: 30px;
	height: 30px;
	background: radial-gradient(circle at bottom, #FF5722, #FF9800, #FFC107, #FFEB3B, transparent);
	border-radius: 50%;
	animation: burn 1s infinite alternate;
}

@keyframes burn {
	from {
		transform: scale(1, 1) translate(0, 0);
		opacity: 1;
	}
	to {
		transform: scale(1.2, 1.2) translate(0, -10px);
		opacity: 0;
	}
}
