body {
	font-family: "JetBrains Mono", sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	color: #929292;
	background: #101010;
	/* overflow: hidden; */
	overflow-x: hidden;
	height: 100vh;
	width: 100vw;
  }

  .container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	/*         background-color: rgba(24, 24, 24, 0.1);
	backdrop-filter: blur(5px);
	padding: 20px; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  }

  .header {
	text-align: center;
	padding: 4rem 0;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	background: rgba(9, 9, 9, 0.5);
	border-radius: 5px;
  }

  .logo {
	width: 150px;
	height: 150px;
	margin: 0 auto 2rem;
	display: block;
  }

  .username {
	font-size: 2.5rem;
	margin: 1rem 0;
  }

  .real-name {
	font-size: 1rem;
	color: #666;
	margin-bottom: 1rem;
  }

  .contact-info {
	margin: 2rem 0;
	text-align: center;
  }

  .contact-info a {
	color: #333;
	text-decoration: none;
	margin: 0 1rem;
  }

  .contact-info a:hover {
	text-decoration: underline;
  }

  .section {
	margin: 4rem 0;
  }

  .section-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #333;
  }

  .experience-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	background: rgba(9, 9, 9, 0.5);
	border-radius: 5px;
  }

  .experience-title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem 0;
  }

  .experience-company {
	font-weight: bold;
  }

  .experience-date {
	color: #666;
	font-size: 0.9rem;
  }

  .project-item {
	margin-bottom: 2rem;
	padding: 1.5rem;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	background: rgba(9, 9, 9, 0.5);
	border-radius: 5px;
  }

  .project-title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem 0;
  }

  .project-description {
	color: #555;
  }

  .background-svg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw; /* Full viewport width */
	height: 100vh; /* Full viewport height */
	z-index: -1; /* Push it behind other content */
	overflow: hidden; /* Prevent scrolling issues */
  }

  .background-svg svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  svg#topographic {
	width: 100vw;
  }

  svg#topographic path {
	fill: rgba(255, 255, 255, 0.082) !important;
	stroke-width: 1;
	stroke-miterlimit: 0;
	stroke: #353535 !important;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	-webkit-animation: dash 30s linear alternate infinite;
	animation: dash 30s linear alternate infinite;
  }

  @-webkit-keyframes dash {
	from {
	  stroke-dashoffset: 1000;
	}
	to {
	  stroke-dashoffset: 0;
	}
  }
  @keyframes dash {
	from {
	  stroke-dashoffset: 1000;
	}
	to {
	  stroke-dashoffset: 0;
	}
  }

  .footer {
	background: rgba(9, 9, 9, 0.5);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	color: #fff;
	padding: 20px 10px;
	text-align: center;
	font-size: 14px;
	position: relative;
	bottom: 0;
	width: 100%;
  }