
/** ------------------------------------ Mise en page de l'entête ------------------------------------ **/
header {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: black;
}
.header_global {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 15vw;
    overflow: auto;
    display: inline-block;
}
/** ------------------------- Partie fame ------------------------- **/
.header_fame {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 50%;
    float: left;
}
/** mise en forme de l'image de fond de Fame **/
.header_fame_img{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url(../fichiers/images/header_fame.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
/** Mise en forme du texte de Fame **/
.header_fame_text {
    font-family: 'Arial Black', Gadget, sans-serif;
    width: 100%;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-style: italic;
    text-shadow: 3px 3px black;
    font-size: calc(12px + 2.5vw);
}
/** ------------------------- Partie rock'n'voice ------------------------- **/
.header_rnv {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 50%;
    float: left;
}
/** mise en forme de l'image de fond de Rock'n'Voice **/
.header_rnv_img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: center;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url(../fichiers/images/header_rocknvoice.JPG);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
/** Mise en forme du texte de Rock'n'Voice **/
.header_rnv_text {
    padding: 0;
    margin: 0;
    font-family: 'Arial Black', Gadget, sans-serif;
    width: 100%;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-style: italic;
    text-shadow: 3px 3px black;
    font-size: calc(12px + 2.5vw);
}