#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.navbar {
  background-color: transparent;
  padding: 10px;
  transition: background-color 0.5s ease-in-out;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

.navbar .nav-link {
  color: #ffffff;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.hero-text-mod {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}

.container-fluid-mod {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;

}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text .btn {
  font-size: 18px;
  padding: 12px 24px;
}

body {
  overflow-y: auto;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.project-section {
  padding: 80px 0;
  color: #ffffff;
}

.container-fluid {
  background-color: #000000;
}

.project-preview {
  cursor: pointer;
}

.gallery {
  margin: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}

.spacer {
  height: 2000px;
}

.profile-picture {
  width: 150px; /* Adjust the size of the profile picture as needed */
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
}
.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}