/* General styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Profile Photo */
.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #0073b1; /* Matches LinkedIn button color */
}

/* Header */
h1 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
  color: #333;
}

.description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
  margin: 0;
  padding: 0 10px;
  margin-bottom: 10px; /* Ajustez la valeur selon vos besoins */

}

/* LinkedIn Button */
.linkedin-button button {
  margin-top: 0.9rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #0073b1;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 115, 177, 0.3);
}

.linkedin-button button:hover {
  background-color: #005582;
  transform: translateY(-2px);
}