/* Appel d'une variable s'effectue en faisant "Var(--ColorTitle)" par exemple. */
:root {
    --color1: #AEE8FE;
    --color2:#AEE8FE;
    --color3:#72D2FB;
    --color4:#AEE8FE;
    --color5:#01327F;
    --color6:#707078;
    --inputCorrect: #04724d;
    --inputIncorrect: #e94f37;
    --inputVide: #cde6f5;
    --linkColor : black;
}

html, main, body, div, a, header, footer, nav, article, section, aside, fieldset, label, input, select, textarea {
    display: flex;
    flex: 1;
    margin: 0;
    padding: 0;
}
input, button, select{
    font-size: 1.2rem;
   padding: 1rem !important;
}
img{
    height: 100%;
    align-self: center;
}
button,video{
    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);
}
.colorIncorrect{
    color: var(--inputIncorrect);
}
.bgc5{
    background-color: var(--color5);
    color: var(--color1);
}
.bgc3{
    background-color: var(--color3);
    color: black;
}
textarea{
    height: 8rem;
}