.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.composant {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.barre {
    width: 75%;
}
.listing {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}
.description {
    text-align: center;
}
.barre-btw-component {
    width: 50%;
}
.landing__link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 2.5rem;
    background-color: rgb(0, 230, 50);
    border: 0.125rem solid rgb(1, 176, 39);
    border-radius: 0.625rem;
}
.landing__link-btn:hover {
    background-color: rgb(0, 107, 23);
    border-radius: 0.625rem;
}
.landing__link {
    color: black;
    text-decoration: none;
}
.landing__link-btn:hover .landing__link {
    color: white;
}