/*
*
* CSS Variables
*
*/
:root {
    /* margin / padding */
    --padding: 1em;
    --margin: 1em;
    --border_radius: 0.3em;
}

/*
 * fonts
 */

@font-face {
    font-family: Quicksand;
    src: url("/src/fonts/Quicksand-Regular.ttf") format('truetype');
}

@font-face {
    font-family: Quicksand;
    font-weight: bold;
    src: url("/src/fonts/Quicksand-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url("/src/fonts/MaterialSymbolsOutlined.woff2") format('woff');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
}

/*
 * body
 */

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;

    font-size: var(--font_size);
    font-family: var(--font_family);
    background-color: var(--color_theme_1);
    color: var(--color_font_theme_1);
}

#CONTENT {
    position: relative;
}

#BODY {
    padding-top: 4em;
}

#QUICK_LINKS, #HEADERS, #MENUS, #BODY, #FOOTERS {
    width: 100%;
    font-size: 1em;
}

.bloc {
    margin-left: auto;
    margin-right: auto;
}

.bloc_color_1 {
    width: 100%;
    background-color: var(--color_theme_1);
}

.bloc_color_2 {
    width: 100%;
    background-color: var(--color_theme_2);
}

.computer .bloc {
    width: 1500px;
}

.mobile .bloc {
    width: 90%;
    margin: 0 auto;
}

/*
*
* HTML TAGS
*
*/
a, a:visited, a:hover {
    text-decoration: none;
    color: var(--color_font_theme_1);
}

h1 {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 2em 0 1em 0;
    width: 100%;
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
    text-transform: none;
    margin: 0;
    padding: 1.5em 0 1em 0;
    width: 100%;
}

p {
    margin: 0;
    margin-inline: 0;
    margin-block: 0;
}

ul {
    list-style-type: '- '
}

hr {
    margin: 2em 0;
}

/*
*
* Buttons
*
*/
button, button:visited, button:hover, .style_button, .style_button:visited, .style_button:hover, .style_button_success, .style_button_neutral, .style_button_failure {
    display: inline-block;

    max-width: 250px;
    padding: var(--padding);
    margin: var(--margin);
    border: 1px solid var(--color_theme_3);
    border-radius: var(--border_radius);
    box-shadow: 1px 1px 1px black;
    cursor: pointer;

    vertical-align: middle;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    background-color: var(--color_theme_2);
    color: var(--color_font_theme_2);
    font-size: 1em;
}

.style_button_success, .style_button_success:visited, .style_button_success:hover {
    background-color: var(--color_success);
    color: var(--color_font_success);
}

.style_button_neutral, .style_button_neutral:visited, .style_button_neutral:hover {
    background-color: var(--color_neutral);
    color: var(--color_font_neutral);
}

.style_button_failure, .style_button_failure:visited, .style_button_failure:hover {
    background-color: var(--color_failure);
    color: var(--color_font_failure);
}

button:hover, .style_button:hover, .style_button_success:hover, .style_button_neutral:hover, .style_button_failure:hover, a:hover {
    opacity: 0.8;
}


.mesProcessus {
	font-style: italic;
	font-weight: bold;
}
