body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #111;
}
.logo {
	width: 280px; 
	height: auto;
	margin-bottom: 30px; 
}
.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}
.pulse-text {
	font-family: Arial;
	color: #fff !important; 
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(255,255,255,0.3); 
   animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.08);
		opacity: 0.6;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}