#sec-1{
    background: var(--color-bg2);
    color: var(--color-text1);
    align-items: center; /* Centré sur la hauteur */
    justify-content: center; /* Centré sur la largeur */

    min-height: 100vh;
    width: 100%;
    display: flex;
}
#sec-1 h1{
    background: linear-gradient(90deg, #FF0000, #8F00FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase; /* Text en majuscule */
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
    text-align: center; /* Centré dans la div */
}
#sec-1 p{
    color: var(--color4);
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem; /* 133.333% */
    margin-bottom: 2.5rem;
    text-align: center; /* Centré dans la div */
}
.saisi{
    width: 24.1875rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 3.125rem;
    border: 1px solid var(--color3);
    padding: 3%;
    margin-bottom: 2rem;
}
.bouton{
    width: 24.1875rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 3.125rem;
    background: var(--color2);
    color: var(--color6);
    cursor: pointer;

}