body {
	margin: 0;
	padding: 0;
	font-family: "Arial", sans-serif;
	background: url("/assets/indx_bg.png") no-repeat center center/cover;
	height: 100vh;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	text-align: center;
	color: white;
	font-family: "Cabin Sketch", cursive;
	overflow-y: hidden;
}

.container {
	position: relative;
	top: 15%;
	left: 2%;
	animation: fadeIn 2s ease-in-out;
}

h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	animation: slideDown 1.5s ease-in-out;
}

p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	animation: slideUp 1.5s ease-in-out;
}

.btn {
	padding: 12px 25px;
	font-size: 1.2rem;
	color: white;
	background: #e74c3c;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
	animation: fadeIn 2.5s ease-in-out;
}

.btn:hover {
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	background: #bb2e1e;
	transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
