/* CSS Document */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
	flex-direction: column; /* Pour empiler les éléments verticalement */
    align-items: flex-start; /* Aligner les éléments à gauche */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000042;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #000042;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #000042;
    color: #fff;
}

.social-link img {
    width: 40px;
    height: 40px;
    margin-right: 50px;
}

.social-description {
    text-align: left; /* Aligner le texte à gauche */
}


