/* le main */
#pagePropo { 
    width: 100%;
    height: 85vh;
    padding-top: 5vh;   
}

#wrapPropos {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

h2 {
    font-size: 1.2rem;
}

#divMe p {
    font-size: .8em;
    margin: 0;
    line-height: 1.5rem;
}

/* la section de présentation */
#sctnMe {
    width: 100%;
    padding: 2rem;
}

#divMe {
    padding: 1rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: .2em;
    background-color: #8482777e;
}


 /* la balise iframe cv */
/* #cv {   
    display: flex;
    flex-direction: row;
    align-content: center;
    left: 50vw;
    color: #ffffffd6;
} */

/* aside de contact */
#asideRight{
    width: 20%;
    height: 15%;
    text-align: center;
    border: 1px solid var(--or);
    border-radius: .2em;
    margin: 2rem;

}


/* début tablette */
@media screen and (max-width: 1200px) {

    #wrapPropos {
        height: 60%;
    }

    #asideRight {
        padding: 1rem;
    }
    address {
        font-size: .8em;
    }
}


/* début mobile */
@media screen and (max-width: 765px) {
    
    #pagePropo {
        height: 100vh;
        padding-top: 1rem;
    }

    h2 {
        margin-top: 0;
    }
    
    #wrapPropos {
        flex-direction: column;
        row-gap: 5%;
        height: 100vh;
        /* margin-top: 1rem; */
    }
    
    /* la section de présentation */
    #sctnMe {
        padding: 0;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    #divMe {
        padding: 1rem;
        height: 100%;
        position: absolute;
        left: 2;
        overflow-x: hidden;
        overflow-y: scroll;
        -ms-overflow-style: none;
        overflow: moz-scrollbars-none;
    }

    #divMe::-webkit-scrollbar {
        display: none;
    }
    

    /* aside de contact */
    #asideRight {
        width: 80%;
        margin: auto;
        height: 10%;  
    }
}