body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0c1830;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }

  header nav a:hover {
    text-decoration: underline;
  }

  .main-content {
    text-align: center;
    padding: 40px 20px;
  }

  .main-content h1 {
    font-size: 1em;
  }

  .main-content h1 strong {
    color: white;
  }

  .avatar
  {
    width: 20%;
    height: 20%;
    border-radius: 50%;
  }

  .stats {
    font-size: 2em;
    margin: 40px auto;
    background-color: #132442;
    border-radius: 10px;
    width: fit-content;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .stats i {
    font-size: 1em;
  }

  .stats-content {
    text-align: left;
  }

  .projects {
    text-align: center;
    margin-top: 20px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 600px;
    margin: auto;
  }

  .project-box {
    font-size: 2em;
    background-color: #132442;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
  }

  footer {
    margin-top: auto;
    padding: 10px 20px;
    border-top: 3px solid #ffffff40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    margin: 10vh;
  }

  .social-icons a {
    color: #6862B6;
    margin: 0 5px;
  }

  .titre
  {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10vh;
    margin-top: 10vh;
    font-size: 5vh;
    align-items: center;
  }

  .titre h1
  {
    text-align: start;
  }

  .projects
  {
    margin-top: 5em;
  }

  a{
    text-decoration: none;
    color: #ffffff;
  }

  @media (max-width: 500px) {


   .desktop
   {
    display: none;
   }

   .mobile
   {
    display: block;
   }
}

.mobile
{
  display: none;
}