* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
	color: #fff;
	background: url('main.gif') no-repeat center center/cover;
}

/* Optional: overlay to darken the GIF for readability */
body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.content {
	position: relative;
	z-index: 1;
}

.logo-container svg {
	max-width: 500px;
	width: 100%;
	height: auto;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #B521AF;
}

.buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.buttons a {
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	background-color: #B521AF;
	transition: background 0.3s, transform 0.3s;
}

.buttons a:hover {
	background-color: #d94bff;
	transform: translateY(-3px);
}