body * {
  opacity: 0;
}

body * {
  transition: opacity 0.9s ease-in-out;
}

body.loaded * {
  opacity: 1;
}


body {
  text-align: center;
  padding: 2em;
  font-family: 'Courier New', monospace;
}

.project-details-container {
  text-align: left;
  margin-left: 30px;
}

.verdana {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 14px;
}


.thumbnail{
  width: 150px; 
}

#Home {
  text-align: left;
}

.hover-effect {
  background-color: rgba(255, 255, 255, 0); 
  transition: background-color 0.3s ease; 
}

.hover-effect:hover {
  background-color: rgba(214, 13, 13, 0.2); 
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.nav-link:hover {
  animation: bounce2 0.5s infinite;
  color:rgba(0, 0, 0, 0.944);
}

.connection:hover {
  animation: bounce2 0.5s infinite;
}

@keyframes bounce2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

img {
  max-width: 90%;
  height: auto;
}

a {
  text-decoration: none;
}

.list-group-flush li {
  text-align: left;
}

.certification {
  position: relative;
}

.certification:hover {
  animation: bounce 0.9s infinite linear;
}

@keyframes bounce {
  0%, 100% { 
    left: -10px; 
  }
  50% { 
    left: 10px; 
  }
}

.image-overlay {
  position: absolute;
  left: 0;
  z-index: 1;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
}

.navbar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #000;
}

@keyframes star-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-2 .fas.fa-star {
  animation: star-rotate 2s linear infinite;
}



.carousel-control-prev, .carousel-control-next {
  filter: invert(1) grayscale(100%); 
}


.carousel-control-prev:hover, .carousel-control-next:hover {
  filter: invert(0) grayscale(100%); 
}

@media (max-width: 576px) {
  #canvaCarousel .carousel-caption {
    position: static;
    text-align: center;
    margin-top: 10px; 
  }
}
