body {
  font-family: Georgia, serif;
  background: #fff;
  color: #111;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

header, footer {
  text-align: center;
}

.logo {
  max-width: 820px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: normal;
}

section {
  margin-bottom: 2rem;
}

.project {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  width: 150px; /* ajuste la taille à ton goût */
  height: auto;
  margin-right: 1rem;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }
}

