body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #55aa6b;
}

p {
  font-family: Poopins, sans-serif !important;
}

.intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.intro h2 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.intro h1 {
  font-size: 5rem;
  letter-spacing: 0.1rem;
  animation: slide-in 1s forwards;
}


/* particle effect styling */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #0e101c;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

/* keyframe animation for the slide-in effect of the name */
@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.buttons {
  margin-left: 10px;
}

.buttons a {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border: 0px solid #fff;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buttons a:hover {
  background-color: #0e101c;
  color: #55aa6b;
}


.button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #55aa6b;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #55aa6b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #55aa6b;
  color: #fff;
}

.projects-container {
  background-color: rgba(14, 16, 28, 0.8); /* Adjust the color and opacity as needed */
  backdrop-filter: blur(5px); /* Adjust the blur intensity as needed */
  padding: 40px; /* Add padding to create some separation */
  border-radius: 20px; /* Rounded corners for the background */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center; /* Center vertically */
  gap: 40px; /* Adjust the gap as needed */
  margin-top: 80px; /* Give space for the logo */
  animation: fade-in 1.5s ease-in forwards;
}

.project {
  flex-basis: calc(33.33% - 40px); /* Each project takes up 1/3 of the row width with gap */
  max-width: 300px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.project img {
  width: 100%;
  max-height: 200px;
  border-radius: 8px;
  cursor: pointer;
}

.row {
  display: flex;
  justify-content: center;
  gap: 20px;
}


/* Icons */
.fa-brands{
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  border: 0px solid #fff;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fa-python{
  color: #07cf11;
}
.fa-python:hover {
  color: #fff;
}

.fa-cuttlefish{
  color: #007bb5
}

.fa-cuttlefish:hover {
  color: #fff;;
}

.fa-java{
  color: #ff0000;
}

.fa-java:hover {
  color: #fff;;
}

.fa-js{
  color: #b43f08;
}

.fa-js:hover {
  color: #fff;;
}



.fa-html5{
  color:#ca8300
}

.fa-html5:hover {
  color: #fff;
}

.fa-css3-alt{
  color:#007bb5
}

.fa-css3-alt:hover{
  color:#fff
}

.fa-database{
color:#5ecafc
}

.fa-database:hover{
color:#fff
}

.fa-android{
color: #07cf11;
}
.fa-android:hover {
color: #fff;
}

h3 {
  color: #00d9ff; /* Change to the desired shade of blue */
}

@keyframes fade-in-projects {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated-projects {
  opacity: 0; /* Initially set opacity to 0 */
  animation: fade-in-projects 1.5s ease-in-out 0.5s forwards; /* Apply the animation */
}

/* Media query for screens with a maximum width of 768px (typical for tablets and phones) */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .intro h1 {
    font-size: 3rem; /* Adjust font size for smaller screens */
  }

  /* Adjust other styles as needed for smaller screens */

  .projects-container {
    padding: 20px; /* Reduce padding for smaller screens */
    gap: 20px; /* Reduce gap for smaller screens */
    margin-top: 40px; /* Reduce margin top for smaller screens */
  }

  .project {
    flex-basis: calc(50% - 20px); /* Adjust project width for smaller screens */
  }
}