body { 
    font-family:  arial, sans-serif;
    font-size: 14px;

}
p{
    margin: 0px;
    padding: 3px;
}

#identity {
    display: flex;
    /*width:1000px;*/

    min-height: 330px;
}

#identity div {
    font-size: 20px;
    margin: 5px;
    padding: 20px;
}

#header{
    padding: 20px;
    font-size: 60px;
    font-family: Lucida, Helvetica, sans-serif;
    text-align: center;
}

#nav{
    display: flex;
    justify-content: center;
}
#nav a{
    margin: 5px 20px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    color: gray;
    font-size: 30px;
}
#nav a.active{
    color: black;
}
#presentation {
    padding: 20px;
    font-size: 20px;
    font-style:  italic;
    text-align: center;
}

.container{
    margin: auto;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
    padding: 10px;
}

.section{
    border: #000000 solid 0px;
    padding:20px;

}

.title{
    font-size: 20px;   
    font-weight:  bold;
}

table{
    width: 100%;
    margin: 3px;
}

.gras{
    font-weight:  bold;

}

ul{
    list-style-type:square;
}

ul.noPuce{
    list-style-type: none;
}

.links ul li a {
    color: #c9c9c9;

    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -ms-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: color .3s linear;
}

a.wordResume:hover {
    color: #4875B4;
}
a.linkedinProfile:hover {
    color: #4875B4;
}

.floatRight{
    float: right;
}

.floatLeft{
    float: left;
}

.inLine{
    display: inline;
}

.block{
    display: block;
}

.inline-block{
    display: inline-block;
}

.flex{
    display: flex;
}

.showcase{
    padding: 60px 10% 0;
}
.showcase h2{
    text-align: center;
    font-size: 40px;
    color: black;
}
.devices{
    position: relative;
    height: 410px;
}
.devices:hover .mobile{
    right: -20px;
    top: 145px;
    transition: top 1s, right 1s;
}
.devices:hover .desktop{
    left: 8%;
    transition: top 1s, left 1s;
}

.devices img{
    width: 100%;
}


.devices .desktop, .devices .mobile{
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}
.devices .desktop{
    width: 500px;
    left: 10%;
    transition: top 1s, left 1s;
}
.devices .mobile{
    right: 0px;
    width: 180px;
    top: 125px;
    transition: top 1s, right 1s;
}
.devices .monitor, .devices .phoneCase{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}
.devices .screen{
    position: absolute;
    z-index: -1;
}
.devices .desktop .screen{
    top: 20px;
    left: 20px;
    width: 460px;
    height: 258px;
    overflow: scroll;
}
.devices .mobile .screen{
    top: 7px;
    left: 32px;
    width: 116px;
}