.header {
	overflow: hidden;
	background-color: #cdcdcd6b;
	padding: 10px 5px;
	position: fixed; /* Fixes the header at the top */
	top: 0;
	width: 100%;
	z-index: 1000; /* Ensures the header is above other content */
  }

  .heading{
	display: flex;
	position: flex;
  }

nav ul {
	list-style: none;
	display: flex;
	color:rgb(0, 0, 0);
}

nav .homeLi{
	margin-right: auto;
	display: block;
}

nav .Li{
	display: none;
}

.name{
	width: 200px;
	padding-left: 2em;
	height: 50px;
	position: flex;
	display: block;
}


nav a{
	display: flex;
	text-decoration: none;
	color:rgb(0, 0, 0);
	padding: 0 2em;
	display: block;
}

#openMenu{
	display: none;
	width: 50px;
	height: 50px;
	background: none;
	background-image: url(/images/menu.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
	padding: 1em;
	margin-left: auto;
	cursor: pointer;
	margin-right: 3em;
}

#closeMenu{
	display: none;
	width: 35px;
	height: 35px;
	background: none;
	background-image: url(/images/x.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border:none;
	padding: 1em;
	cursor:pointer;
}

/* @media screen and (max-width: 700px){ */
	nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: min(10em, 75%);
		z-index: 100;
		background-image: url("/images/textureWork2.png");
		background-repeat:inherit;
		background-size: cover;
		background-color: white;
		background-position: center;
		border-style: ridge;
		border-color: white;
		transition: right 300ms ease-out;
	}
	nav.show{
		right: 0;
	}

	nav ul {
		width: 100%;
		flex-direction: column;
		gap: 0;
		margin-top: 5vh;
		padding-left: 5%;

	}

	nav a {
		width: 100%;
		padding-left: 1em;
		padding-top: 1.5em;
		padding-right: 1em;
		margin-right: 10rem;
		display: block;
		width: 100px;
		height: 60px;
		background-image: url(/images/panel3.png);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		text-align: center;
		font-weight: bold;
		font-size: 20px;
		transition: transform 0.3s;
	}
	nav a:hover{
		transform: scale(1.05);
	}
	nav .Li {
		display: block;
	}

	#openMenu{
		display: block;
	}
	#closeMenu{
		display: block;
		margin-left: 30%;
		margin-top: -10px;
		width: 45px;
		height: 45px;
		padding-bottom: 2em;
	}

.text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 50px;
    color: #c7c7c7;
    text-align: center;
}

.cursor {
	position: fixed; /* Fixes cursor to viewport, ignoring page scroll */
	top: 0;
	left: 0;
	width: 100px; /* Adjust to match GIF size */
	height: 100px;
	background-image: url('/images/cursoridle.gif');
	background-size: cover;
	pointer-events: none; /* Ensures it doesn’t interfere with anything */
	transform: translate(-50%, -50%); /* Centers the cursor */
	z-index: 10000;
  }

    
html, body {
	height: 100%;          /* Allow full viewport height */
	width: 100%;           /* Allow full viewport width */
	margin: 0;             /* Remove default margin */
	overflow: auto;        /* Enable scrolling */
	cursor: none !important; /* Hide default cursor */
  }
  
  *,
  *::before,
  *::after {
	cursor: none !important; /* Force the default cursor to be hidden */
  }