.Milieu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;

}
.Veille {
    text-align: center;
    font-size: 4rem; /* Taille de police ajustable pour les petits écrans via une requête média */
    background: linear-gradient(268deg, #5200FF 12%, #FF00F5 91.75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0; /* Supprime les marges par défaut pour rapprocher les textes */
}

.Machine {
    color: #D9D9D9;
    text-align: center;
    font-size: 4rem; /* Taille de police ajustable pour les petits écrans via une requête média */
    font-weight: 700;
    line-height: 1; /* Réduit l'espacement entre les lignes de texte */
    margin: 0; /* Supprime les marges par défaut pour rapprocher les textes */
    padding-top: 2%;
    width: 50%;
}

.desc {
    text-align: center;
    font-size: 2rem; /* Taille de police ajustable pour les petits écrans via une requête média */
    align-items: center;
    background: linear-gradient(268deg, #5200FF 12%, #FF00F5 91.75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 80%; /* Ajuste la largeur à 80% de la largeur de la div pour la rendre responsive */
    max-width: 88rem; /* Fixe une largeur maximale pour éviter que le texte devienne trop grand sur les grands écrans */
    margin: 0; /* Supprime les marges par défaut pour rapprocher les textes */
    padding-top: 2%;
}

.centre{
    display: inline-flex;
    flex-direction: column;
    width: 60%;
    align-items: center;
    justify-content: center;
}

.titre{
    color: #D9D9D9;
    font-size: 2rem; /* Taille de police ajustable pour les petits écrans via une requête média */
    font-weight: 700;
    line-height: 1; /* Réduit l'espacement entre les lignes de texte */
    margin: 0; /* Supprime les marges par défaut pour rapprocher les textes */
    padding-top: 2%;
    width: 100%;
}

.bg1{
    background-color: black;
}

.bg2{
    background-color: rgb(27, 27, 27);
}

.sources-section {
    background-color: black;
    padding: 2rem 0;
}

.sources-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sources-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.source-card {
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: background-color 0.3s ease;
}

.source-card:hover {
    background-color: #2a2a2a;
}

.source-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.source-image {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.source-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
}

.source-description {
    color: #9ca3af;
    text-align: center;
}

@media (min-width: 768px) {
    .sources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

