/* General styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d1117;
  color: #ffffff;
  overflow: hidden; /* To hide overflow from particles */
}

/* Navigation bar styles */
.navbar {
  background-color: #1f2937;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-menu a:hover {
  background-color: #374151;
}

/* Content container */
.container {
  text-align: center;
  margin-top: 100px; /* Offset to avoid overlap with the navbar */
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
