body {
	margin: 0;
	padding: 0;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* Full viewport height */
	overflow: hidden; /* Avoid scrollbars */
}

#justronaut-image {
	object-fit: contain; /* Maintain aspect ratio */
	position: relative;
	max-width: 100%; /* Ensure image doesn't exceed container width */
}

@font-face {
	font-family: 'LuloCleanOne';
	src: url('LuloCleanOne-Bold.woff2') format('woff2'),
		url('LuloCleanOne-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'LuloCleanOne';
	src: url('LuloCleanOne.woff2') format('woff2'),
		url('LuloCleanOne.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Default Styles for Larger Screens */
.menu {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-family: 'LuloCleanOne', sans-serif; /* Custom font */
}

.menu h1 {
	font-size: 18px;
	padding: 10px 30px;
}

.menu-item {
	width: 100%; /* Responsive width */
	max-width: 200px; /* Limit to original width */
	background-color: black;
	color: white;
	text-align: right;
	padding: 20px 30px; /* Spacing inside the block */
	margin: 2px 0; /* Spacing between blocks */
	font-size: 12px; /* Adjust as needed */
	cursor: pointer; /* Ensure consistent pointer feedback */
	transition: background-color 0.3s ease;
}

.menu-item:hover {
	background-color: #444; /* Lighter black on hover */
}

a.nappula {
	text-decoration: none; 
	color: inherit; 
	cursor: pointer;
}

/* Burger Menu for Smaller Screens */
.burger-icon {
	display: none;
	position: fixed;
	top: 10px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
	color: black;
	z-index: 1001;
}

.menu-overlay {
	display: none; /* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	color: white;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.menu-overlay.open {
	display: flex; /* Show overlay when open */
	transform: translateY(0);
}

.menu-items {
	text-align: center;
	font-family: 'LuloCleanOne', sans-serif; /* Custom font */
}

.menu-overlay .menu-item {
	background-color: transparent;
	color: white;
	font-size: 18px;
	margin: 10px 0;
	padding: 10px;
	cursor: pointer;
	text-align: center;
}

.menu-overlay .menu-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.close-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	cursor: pointer;
	color: white;
}

/* Responsive Styling for Mobile */
@media (max-width: 768px) {
	.menu {
		display: none; /* Hide original menu */
	}

	.burger-icon {
		display: block; /* Show burger icon */
	}

	.menu-overlay {
		display: none; /* Overlay remains hidden until toggled */
	}
}


#content-holder {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 100%;
	text-align: center;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white; /* Star warp background */
	overflow: hidden;
	z-index: 10;
}

#loader .star {
	position: absolute;
	width: 2px;
	height: 2px;
	background: black;
	animation: warp-to-center 1.5s ease-out forwards;
}

.hidden {
	display: none;
}

@keyframes warp-to-center {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translate(calc(-50vw), calc(-50vh)) scale(2);
		opacity: 0;
	}
}