@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  /* font-weight: bold; */
  background-image: url("/static/assets/GrindFinal.svg");
}

/* Centrage uniquement pour le contenu principal */
.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Styles pour le nav */
/* Styles pour le nav */
nav {
  width: 100%;
  padding: 10px 0;
  margin-top: 30px; /* Ajuste la marge selon la distance que tu souhaites */
  text-align: center;
  font-size: 16px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #606770; /* Couleur de texte neutre */
  font-weight: 500;
  font-weight: bold;
  /* font-family: 'Courier Prime'; */
}

nav a:hover {
  /* text-decoration: underline; */
  color: rgba(112, 214, 81, 0.596);
}


.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.profile-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.title {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.bio {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 14px;
  color: #333;
  margin: 8px 0;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
}