body {
    background-color: #111;
    color: white;
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 20px;
}
a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid white;
}
.container {
    max-width: 800px;
    margin: auto;
}
.meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.meta div {
    text-align: left;
}
.screenshot img {
    width: 100%;
    border-radius: 10px;
}
.description {
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}
.liens {
    display: inline-flex;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.liens:hover {
    color: white;
}

.back-home {
    display: inline-flex;
    margin-bottom: 20px;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: white;
}

.btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #000000;
    color: white;
    font-style: bold;
}

.footer {
    background-color: #1e1e1e;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .logos img {
    width: 300px;
    height: 300px;
    object-fit: contain; /* garde le ratio, évite les déformations */
    padding: 10px;
    border-radius: 10px;
  }