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;
  align-items: center;
  justify-content: center;
}

.main-content h1 {
  font-size: 1em;
}

.main-content h1 strong {
  color: white;
}
.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 #ffffff;
  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;
}


.a-venir {
  font-size: 3em;
}

.patch-box {
  padding: 0px;
  font-size: 2em;
  background-color: #132442;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  width: 80%;
}

main {
  display: flex;
  justify-content: center;
}

.patch-box  {
  text-align: start;

}

.patch-box  p{
  text-align: end;

}

ul 
{
  margin-left: 2em;
}

p
{
  margin-bottom: 0;
}

a{
  text-decoration: none;
  color: #ffffff;
}