/* Appel d'une variable s'effectue en faisant "Var(--ColorTitle)" par exemple. */
:root {
    --color1: #ffffff;
    --color2:#01DFB6;
    --color3:#a7e2d7;
    --color4:#e1f7f8;
    --color5:#24A285;
    --color6:#494B48;
    --inputCorrect: #04724d;
    --inputIncorrect: #e94f37;
    --inputVide: #cde6f5;
    --linkColor : black;
    --fontsize:1rem;
}

html, main, body, div, a, header, footer, nav, article, section, aside, fieldset, label, input, select, .flex {
    display: flex;
    flex: 1;
    margin: 0;
    padding: 0;
}
html{
    font-size: var(--font-size);
}
section{
    margin:0rem 0.5rem ;
}
img, video, button {
    width: 100%;
}

.colonne {
    flex-direction: column;
}

.center {
    justify-content: center;
    align-items: center;
}

/* Différent taille de flex. */
.vMini { flex: 0.05; }

.mini { flex: 0.2; }

.demi { flex: 0.5; }

.double { flex: 2; }

.triple { flex: 3; }

.espace {
    flex: none;
    height: 2vh;
}

.bigEspace {
    flex: none;
    height: 5vh;
}

.miniEspace {
    flex: none;
    height: 0.2vh;
}
.noDisplay{
    display: none;
}


.absolu {
    position: absolute;
    top: 5em;
    left: 5em;
}

.relative {
    position: relative;
}

a {
    text-decoration : none;
    color : var(--linkColor);
}

.color1{
    color: var(--color1);
}
.color2{
    color: var(--color2);
}
.color5{
    color: var(--color5);
}
.bgc5{
    background-color: var(--color5);
}

input,select{
    min-height: 3rem;
    font-size: 1.2rem;
}
select{
    max-width: 20rem;
}
.demi>input{
    width: 2rem;
    color : #dc7e1a
}