/*************** Mobile first ***************/
a{
    text-decoration: none;
    color: var(--bleu-fonce);
}

body{
    height: 100vh;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bleu-clair);
    font-family: 'Quicksand', sans-serif;
    font-weight: 900;
    color: var(--bleu-fonce);
    font-size: 1rem;
    /*************************************/
}

button, input, label, select, textarea{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

footer{    
    width: 100%;
    max-height: 5vh;
    display: flex;
    display: none;
    justify-content: flex-end;
    flex-shrink: 0;
}

footer img{
    height: 5vh;
}

h1{
    text-shadow: 2px 2px 5px var(--bleu-fonce);
}

header{
    /*display: flex;*/
    width: 100%;
    max-height: 30vh;
    /*justify-content: center;*/
    flex-shrink: 0;
    text-align: center;
}

header img{
    height: 30vh;
}

html{
    font-size: 100%;
    --blanc: #FFF;
    --bleu-clair: #74c4df;
    --bleu-fonce: #1e2f41;
    --noir: #000;
    --orange-clair: #fccd68;
    --orange-fonce: #dc641a;
    --vert: #7fba8c;
}

input{
    padding: .5em;
    border: var(--bleu-fonce) solid 1px;
    border-radius: .3em;
}

/***************** Media queries *****************/
@media (min-width: 768px){
    footer{
        display: flex;
    }

    /*header{
        display: flex;
        justify-content: space-between;
    }*/
}

