body {
    margin: 0;
    background-color: rgb(232, 232, 232);
}

#page_cv {
    display: block;
    /* 100% ecran vertical en mode portrait */
    height: 100svh;
    position: relative;
    margin: auto;
    background-image: url('../Communs/img/cv4.png');
    background-size: 100% 100%;
}


#burger {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
}

#DIVLOGO {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

#LOGO {
    height: 95%;
}

#PAD1 {
    height: 10%;
}

#DIVNAME {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15%;
}

#PNAME {   
    color: var(--color_ne_lightblue);
    font-size: 1.3rem;
}



#INFOS {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    height: 20%;
}

#DIVTEL,#DIVMAIL,#DIVWEB {
    display: flex;
    flex-direction: row;
    color:  var(--color_ne_lightblue);
    padding-left: 5%; 
    font-size: 0.9rem; /* x size(DIVABS)*/
}

.d1{
    display: block;
    width: 1.5rem;
}


.d2{
    display: block;
}



.IMGICON {
    width: 70%;
    vertical-align: middle;
}

#QRCODE {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30%;
}

#PVCARD {
    color: var(--color_ne_lightblue);
    font-size: 0.6rem; /* x size(DIVABS)*/
}

#DIVVCARD {
    display: block;
    text-align: center;
    padding: 2%;
    background-color: white;

}

/* PC affiche QRcode comme image */
#DIVVCARD img {
    display: block;
    width: 100%;
}

/* Smartphone affiche canvas */
#DIVVCARD canvas {
    display: block;
    width: 100%;
}




html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
    font-size: 2.5vh;
}

@media screen and (orientation: landscape) {
    html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
        font-size: 20px;
    }

    #page_cv {
        height: 800px;
    }
}

@media screen and (min-width: 1200px) {
    html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
        font-size: 25px;
    }

    #page_cv {
       width: 700px;
       /*margin: auto;*/
       height: 100svh;
    }
}



