
.around {
  border: solid white 5px;
  border-radius: 100%;
  width: 110px;
  height: 200px;
  padding: 5px;
  background-image: url(img/Photo.jpg);
  background-size: contain;
}

.trait {
  width: 60px;
  height: 4px;
  background-color: #0d6efd;
  border-radius: 10px;
}

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('banner.jpg') center/cover no-repeat;
  height: 80vh;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.skill h5 {
  font-weight: bold;
}



.box:hover {
  transform: translateY(-10px);
  transition: 0.3s ease;
  background-color: #212529;
}


/* Animation légère sur les cartes */
.portfolio-card {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  background-color: #343a40;
}

/* Ajoute ceci dans ton fichier CSS */

.carousel-item {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.card {
  background-color: white;
  border: none;
  border-radius: 1rem;
}

.card-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

h5 {
  font-weight: bold;
  color: #333;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
}

footer a:hover {
  text-decoration: underline;
  color: #f8f9fa;
}

footer p {
  margin-bottom: 0;
}