* {
    font-family: "Quicksand", sans-serif;
}

.superTitre {
    color: #fff;
    text-align: center;
    margin-top: 20px;
    border: 4px solid rgb(255, 217, 0);
    border-radius: 10px;
}

.titre {
    color: #fff;
    text-align: center;
    margin-top: 20px;
    text-decoration-line: underline;
    text-decoration-color: rgb(255, 217, 0);
    text-decoration-thickness: 4px;
}

.secondTitre {
    color: #fff;
    text-align: left;
    margin-top: 20px;
}

.texteContainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.texteContainerCenter {
    width: 50%;
    margin-top: 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    backdrop-filter: brightness(40%);
    box-shadow: 0 5px 45px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.texteContainerCenter p {
    color: #fff;
    font-size: 20px;
    text-align: justify;
}

/* MAINTENACE */
footer {
    width: 1050px;
    height: auto;
    text-align: center;
    vertical-align: center;
    padding: 10px;
    background-color: #ffa600cb;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    color: white;
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    z-index: 100;
    box-sizing: border-box;
}

footer a {
    color: #fff;
    padding: 0 10px;
}

footer p {
    color: #fff;
    padding: 0 10px;
    margin: 0;
}


.lien {
    color: rgb(30, 255, 0);
}

@media screen and (max-width: 1100px) {
    footer {
        width: 100%;
        height: auto;
        text-align: center;
        vertical-align: center;
        padding: 10px;
        background-color: #ffa600cb;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 10px;
        color: white;
        position: relative;
        bottom: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 16px;
        z-index: 100;
        box-sizing: border-box;
    }

    .texteContainerCenter {
        width: 70%;
    }
}

@media screen and (max-width: 500px) {
    

    .texteContainerCenter {
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
        display: flex;
        /* justify-content: center; */
        /* align-items: center; */
        /* text-align: center; */
        flex-direction: column;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 10px;
        backdrop-filter: brightness(40%);
        box-shadow: 0 5px 45px rgba(0,0,0,0.1);
        margin-bottom: 50px;
    }

    .texteContainerCenter p {
        font-size: 18px;
    }

    .superTitre {
        font-size: 24px;
    }

    .titre {
        font-size: 22px;
    }


    footer {
        font-size: 10px;
        padding: 5px 0;
    }

    footer a {
        color: #fff;
        padding: 0 2px;
    }
    
    footer p {
        color: #fff;
        padding: 0 2px;
        margin: 0;
    }
}