body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Poppins', 'Arial', sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 70px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.avatar {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

.cv-button {
  display: inline-block;
  text-decoration: none;
  background-color: #007060; /* légèrement plus vert que bleu */
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cv-button:hover {
  background-color: #009174; /* un peu plus clair au survol */
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 145, 116, 0.5);
}
