body {
  margin: 0;
  font-family: sans-serif;
  background-color: #000; /* fond noir */
  color: #00FF00; /* texte vert */
}

a {
  color: #f00; /* liens rouges */
  text-decoration: none;
}

.container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.sidebar {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f00;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Grid pour projets */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  flex: 1;
}

.project-card {
  padding: 10px;
  border: 1px solid #f00; /* bordure rouge par défaut */
  border-radius: 8px;
  transition: border-color 0.3s;
}

.project-card:hover {
  border-color: #00FF00; /* bordure verte au survol */
}

.project-card h3 {
  margin: 0 0 5px 0;
}

.project-card .project-date {
  color: #00FF00; /* vert pour la date */
  font-size: 0.9em;
  margin: 0 0 5px 0;
}
