:root {
    --color-orange: #ab823d;
    --color-texte: #4d4d4d;
}

* {
    margin: 0;
    padding: 0;
}

/* POLICE */
@font-face {
    font-family: "Bebas";
    src: url("../fonts/Bebas.otf");
}  

@font-face {
    font-family: "OverlockBlack";
    src: url("../fonts/Overlock-Black.ttf");
}  

@font-face {
    font-family: "OverlockItalic";
    src: url("../fonts/Overlock-BoldItalic.ttf");
}  
/* FIN POLICE */
html {
    background-color: var(--color-texte);
}

body {
    background-color: white;
    min-height: 100vh;
    font-family: Bebas;
    line-height: 1;
    font-size: 70px;
    color: var(--color-texte);
    width: 980px;
    margin: auto;
    display:flex; 
    flex-direction:column; 
/* BUG FLEX et FONT SIZE */
    text-size-adjust: 100%; 
    -ms-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
}

a:hover { 
    color: var(--color-texte);
    background-image: url(../images/fond_bouton_on.png);
}

#entete {
    position: relative;
    background-image: url("../images/fond_entete.jpg");
    /*background-size: contain;*/
    background-position: top;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    /*height: 300px;*/
    text-align: center;
}

#page {
    flex-grow:1;
}

#pied {
    background-image: url("../images/fond_pied.svg");
    /*background-size: contain;*/
    background-position: bottom;
    background-repeat: no-repeat;
    height: 170px;
    text-align: center;
}

/*********************************************************
/* PIED DE PAGE
/********************************************************/
#bouton_mot_mystere {
    position: absolute;
    top: -56px;
    right: 170px;
    text-align: center;
    padding: 4px 12px;
}

#bouton_mot_mystere > h1 {
    font-size: 36px;
    padding: 40px;
}
