@font-face {
	font-family: 'Elianto';
	src: url('/../assets/fonts/elianto.otf') format('opentype'),
	url('/../assets/fonts/elianto.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
}

header {
	width: 100%;
	padding: 15px; /* Reduced padding */
	background-color: rgba(0, 0, 0, 0.6); /* Less opaque background */
	color: white;
	font-family: 'Elianto', sans-serif;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	z-index: 1000; /* Ensure it stays above other content */
}

.content {
	width: 90%;
	max-width: 600px; /* Control maximum width for larger screens */
	margin-top: 30px; /* Reduced space between header and image */
	position: relative;
}

.content img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
	margin-top: 20px;
	color: #aaa;
}

@media (min-width: 768px) {
	header {
		padding: 20px; /* Adjusted padding for larger screens */
	}
	.content {
		width: 80%;
	}
}

@media (min-width: 1024px) {
	.content {
		width: 70%;
	}
}