.titre h1 {
    color: #fff;
    font-size: 3em;
    text-align: center;
    background-color: #44566c;
}

.box-container {
    margin: 2%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1% 5%;
    gap: 10%;
    background-color:#44566c ;
    border-radius: 8px;
}

.box {
    display: block;
    padding: 1em;
    margin: 2%;
    text-align: center;
    align-items: center;
    background-color: #dcdcdc;
    border-radius: 8px;
    width: 35%;
}

.box:hover {
    transform: scale(1.1);
    background-color: #ccc;
}

.reseaux {
    display: flex;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    width: 100%;
    height: 20%;
}

.reseaux img {
    width: 4em;
    height: auto;
    max-width: 100%;

}

@media (max-width: 768px) {
    .box-container {
        flex-direction: column;
        align-items: center;
    }

    .titre h1 {
        font-size: 2em;
    }

    .box {
        width: 90%;
        font-size: 0.7em;
    }

    .box:hover {
        transform: scale(1.05);
    }
}