.landing__body{
    background-color: rgb(25, 27, 48);
    margin: 0;
    padding-block: 10rem;
    width: 100%;
    height: 100vh;
    display: flex;
    gap: 10rem;
    justify-content:center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing__quote{
    display: flex;
    gap: 2rem;
    flex-direction: column;
}




.landing__quote-text, .landing__quote-small{
    font-weight: normal;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
}
.landing__quote-small{
    font-size: 0.5rem;
}

.landing__quote-name{
    font-weight: bold;
    color: white;
    font-size: 1rem;
    padding-top: 2rem;
}

.landing__buttons {
    /* Propriété display */
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: 100%;
    /* Positionnement */
    position: relative;
    margin-right: 0rem;
    justify-content: center;
    align-items: center;
    border: none;
}

.landing__buttons-b {
    font-size: 2rem;
    font-weight: bolder;
    padding: 1.5rem;
    width: 20%;
    background-color: rgb(25, 27, 48);
    color: white;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.3s ease;
}

.landing__buttons-b:hover {
    background-color: rgb(112, 121, 215);
    color: rgb(0, 0, 0);
    transform: scale(1.1);
}

a {
    color: inherit; /* Hérite de la couleur du parent ou choisissez une autre couleur */
    text-decoration: none; 
}