* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #1a2f2a 0%, #0d1f1a 50%, #0a1612 100%);
	background-size: 400% 400%;
	animation: gradientShift 20s ease infinite;
	min-height: 100vh;
	padding: 40px 20px 60px;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}

body::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: none;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 80px);
	position: relative;
	z-index: 1;
	padding: 20px 0;
}

