/* Accueil */

/* Center aligns text within the element */
.textcentr {
    text-align-all: center;
    text-align: center;
    justify-content: center;
}

/* Removes the default underline from links and sets the background color to white */
.bodyAccueil {
    text-decoration: none;
    background-color: white
}

/* Creates a flex container and center aligns its content */
.flex-container {
    display: flex;
    text-align: center;
    justify-content: center;
}

/* Center aligns text within the flex container's children elements and adds padding to the right and left sides */
.flex-container > div {
    text-align: center;
    padding-right: 100px;
    padding-left: 100px;
}

/* Centers an image and adds a top margin */
.imageAccueil {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

/* Sets the font size, color, alignment, and styling for an element and makes the text bold */
.bla {
    font-size: 30px;
    color: black;
    text-align: left;
    font-style: oblique;
    font-weight: bold;
}

/* Same as above, but with a different color and background color */
.ora {
    font-size: 30px;
    text-align: left;
    font-style: oblique;
    background: orange;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Left aligns text and adds padding to the left side */
.textleft {
    text-align: left;
    padding-left: 25%;
}

/* Same as above, but with more padding on the left */
.textleft2 {
    text-align: left;
    padding-left: 45%;
}

/* Right aligns text and adds padding to the right */
.textright {
    text-align: right;
    padding-right: 48%;
}

/* Adds padding to the top of an element */
.padtop {
    padding-top: 30px;
}

/* Adds padding to the top and bottom of an element */
.padtop2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Adds margin to the bottom of an element */
.padbot {
    margin-bottom: 30px;
}

/* Adds margin to the right of an element */
.padright {
    margin-right: 20px;
}

/* Adds margin to the left of an element */
.padleft {
    margin-left: 20px;
}

/* Adds padding, a border radius, and a font size and style to an element */
.boite {
    border-radius: 3px 13px 13px 3px;
    padding: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
    border: none;
    font-size: 20px;
    text-align: left;
    font-style: oblique;
    transition: all 100ms ease-out;
}

/* Adds a background color to an element */
.boite:hover,
.boite:focus{
    background-color: black;
    color: white;
    padding: 15px;
}

/* Adds a background color to an element */
.active1 {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: bold;
    text-decoration: underline;
}

.bigger {
    font-size: 50px;
}

/* Fin Accueil */

.title_orange {
    color: orange;
}

.title_black {
    color: black;
}

@media screen and (max-width: 980px) {
    .flex-container > div {
        text-align: center;
        padding-right: 50px;
        padding-left: 50px;
    }

    /* Centers an image and adds a top margin */
    .imageAccueil {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }

    /* Sets the font size, color, alignment, and styling for an element and makes the text bold */
    .bla {
        font-size: 40px;
        color: black;
        text-align: left;
        font-style: oblique;
        font-weight: bold;
    }

    /* Same as above, but with a different color and background color */
    .ora {
        font-size: 40px;
        text-align: left;
        font-style: oblique;
        background: orange;
        background-clip: border-box;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }

    /* Left aligns text and adds padding to the left side */
    .textleft {
        text-align: left;
        padding-left: 5%;
    }

    /* Same as above, but with more padding on the left */
    .textleft2 {
        text-align: left;
        padding-left: 15%;
    }

    /* Right aligns text and adds padding to the right */
    .textright {
        text-align: right;
        padding-right: 85%;
    }

    /* Adds padding to the top of an element */
    .padtop {
        padding-top: 30px;
    }

    /* Adds padding to the top and bottom of an element */
    .padtop2 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Adds margin to the bottom of an element */
    .padbot {
        margin-bottom: 15px;
    }

    /* Adds margin to the right of an element */
    .padright {
        margin-right: 15px;
    }

    /* Adds margin to the left of an element */
    .padleft {
        margin-left: 15px;
    }

    /* Adds padding, a border radius, and a font size and style to an element */
    .boite {
        border-radius: 3px 13px 13px 3px;
        padding: 20px;
        margin-top: 10px;
        padding-bottom: 10px;
        border: none;
        font-size: 40px;
        text-align: left;
        font-style: oblique;
        transition: all 100ms ease-out;
    }

    /* Adds a background color to an element */
    .boite:hover,
    .boite:focus{
        background-color: black;
        color: white;
        padding: 30px;
    }

    /* Adds a background color to an element */
    .active1 {
        text-align: center;
        padding-right: 20px;
        padding-left: 20px;
        font-weight: bold;
        text-decoration: underline;
    }

    .bigger {
        font-size: 50px;
    }

    /* Fin Accueil */

    .title_orange {
        color: orange;
    }

    .title_black {
        color: black;
    }
}