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

body {
	background-color: #111;
	font-family: sans-serif;
	overflow: hidden;
}

/* Navigation Bar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	transition: opacity 0.3s;
}

.navbar a:hover {
	opacity: 0.7;
}

.navbar a.active {
	border-bottom: 1px solid white;
}

/* Image Styling */
.image-container {
	height: 100vh;
	width:100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	animation: fadeIn 1s ease-in;
}

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