    @import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');

    body {
        background: #fff;
        color: #fff;
        height: 100%;
        margin: 0;
        font-family: 'Quicksand', sans-serif !important;
        line-height: 1.5;
    }

    /* Problem Background bouncing jumping resizing on Mobile See example -> https://stackoverflow.com/questions/24944925/background-image-jumps-when-address-bar-hides-ios-android-mobile-chrome */

    body#bg-img {

        background: url(../img/backgroundWithGreyFilter.jpg);
        background-attachment: fixed;
        background-size: cover;
    }

    /*
    body#bg-img:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
 
    }
*/


    .simple-line {
        width: 300px;
        color: #ebebeb;
        opacity: 0.5;
    }

    @media all and (max-width:330px) {
        .simple-line {
            width: 200px;
        }
    }

    .resume-portfolio {
        font-weight: normal;
    }

    @media all and (min-width:1000px) {
        .resume-portfolio {
            width: 50%;
            text-align: left;
            font-weight: normal;
        }
    }

    .resume-portfolio-2 {
        font-weight: normal;
        text-align: center;
    }

    .logos-dev {
        text-align: center;
    }

    /* Pour éventuellement activer le Flex Box de work.html */
/*
    .portfolio-box {
        display: flex;
        flex-wrap: wrap;
        border: 0px solid red;
    }

    @media all and (min-width:1200px) {
        .portfolio-capchas {
            width: 50%;
            border: 0px solid #dcdcdc;
            padding: 20px;
            background-color:#dcdcdc;
        }

        .portfolio-text {
            font-size: 18px !important;
            background-color:white;
            border:1px solid #dcdcdc;
        }

    }
*/
    .portfolio-capchas {
        text-align: center;
    }

    .portfolio-capchas img {
        width: 100%;
    }

    @media all and (min-width:800px) {
        .portfolio-capchas img {
            width: 65%;
            max-width: 1000px;
        }
    }

    .portfolio-text {
        width: 100%;
        font-size: 18px;
        color: black;
    }

    .portfolio-text:hover {
        color: cornflowerblue;
    }

    .menu-btn {
        position: absolute;
        z-index: 3;
        right: 35px;
        top: 35px;
        cursor: pointer;
        transition: all 0.5s ease-out;
    }

    .menu-btn .btn-line {
        width: 28px;
        height: 3px;
        margin: 0 0 5px 0;
        background: #fff;
        transition: all 0.5s ease-out;
        border-radius: 25%;
    }

    .menu-btn.close {
        transform: rotate(180deg);
    }

    .menu-btn.close .btn-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.close .btn-line:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.close .btn-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        opacity: 0.9;
        visibility: hidden;
    }

    .menu.show {
        visibility: visible;
    }

    .menu-branding,
    .menu-nav {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        float: left;
        width: 50%;
        height: 100vh;
        overflow: hidden;
    }

    .menu-nav {
        margin: 0;
        padding: 0;
        background: #373737;
        list-style: none;
        transform: translate3d(0, -100%, 0);
        transition: all 0.5s ease-out;
    }

    .menu-nav.show {
        transform: translate3d(0, 0, 0);
    }

    .menu-branding {
        background: #444;
        transform: translate3d(0, 100%, 0);
        transition: all 0.5s ease-out;
        opacity: 0.5;
    }

    .menu-branding.show {
        transform: translate3d(0, 0, 0);
    }

    .menu-branding .portrait {
        width: 150px;
        height: 160px;
        background: url("../img/portrait_small.jpg");
        background-repeat: no-repeat;
        border-radius: 50%;
        border: solid 3px white;
    }

    .menu .nav-item {
        transform: translate3d(600px, 0, 0);
        transition: all 0.5s ease-out;
    }

    .menu .nav-item.show {
        transform: translate3d(0, 0, 0);
    }

    .menu .nav-item.current > a {
        color: cornflowerblue;
    }

    .menu .nav-link {
        display: inline-block;
        position: relative;
        font-size: 30px;
        text-transform: uppercase;
        padding: 1rem 0;
        font-weight: 300;
        color: #fff;
        text-decoration: none;
        transition: all 0.5s ease-out;
    }

    .menu .nav-link:hover {
        color: cornflowerblue;
        transform: scale(1.25)
    }

    .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    * {
        box-sizing: border-box;
    }



    h1,
    h2,
    h3 {
        margin: 0;
        font-weight: 400;
    }

    h1.lg-heading,
    h2.lg-heading,
    h3.lg-heading {
        font-size: 2rem;
    }

    h1.sm-heading,
    h2.sm-heading,
    h3.sm-heading {
        margin-bottom: 2rem;
        padding: 0.2rem 1rem;
        background: rgba(0, 0, 0, 0);
    }

    a {
        color: #fff;
        text-decoration: none;
    }

    header {
        position: fixed;
        z-index: 2;
        width: 100%;
    }

    .text-secondary {
        color: white;
    }

    main {
        padding: 4rem;
        min-height: calc(100vh - 60px);
    }

    main .icons {
        margin-top: 1rem;
    }

    main .icons a {
        padding: 0.4rem;
    }

    main .icons a:hover {
        color: grey;
        transition: all 0.5s ease-out;
    }

    main#home {
        overflow: hidden;
    }

    main#home h1 {}

    .about-info {
        display: grid;
        grid-gap: 30px;
        grid-template-areas: 'bioimage bio bio''job1 job2 job3';
        grid-template-columns: repeat(3, 1fr);
    }

    .about-info .bio-image {
        grid-area: bioimage;
        margin: auto;
        border-radius: 50%;
        border: #eece1a 3px solid;
    }

    .about-info .bio {
        grid-area: bio;
        font-size: 1.5rem;
    }

    .about-info .job-1 {
        grid-area: job1;
    }

    .about-info .job-2 {
        grid-area: job2;
    }

    .about-info .job-3 {
        grid-area: job3;
    }

    .about-info .job {
        background: #515151;
        padding: 0.5rem;
        border-bottom: #eece1a 5px solid;
    }

    .projects {
        display: grid;
        grid-gap: 0.7rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .projects img {
        width: 100%;
        border: 3px #fff solid;
    }

    .projects img:hover {
        opacity: 0.5;
        border-color: #eece1a;
        transition: all 0.5s ease-out;
    }

    .boxes {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 1rem;
    }

    .boxes div {
        font-size: 2rem;
        border: 3px #fff solid;
        padding: 1.5rem 2.5rem;
        margin-bottom: 3rem;
        transition: all 0.5s ease-out;
    }

    .boxes div:hover {
        padding: 0.5rem 1.5rem;
        background: #eece1a;
        color: #000;
    }

    .boxes div:hover span {
        color: #000;
    }

    .btn,
    .btn-dark,
    .btn-light {
        display: block;
        padding: 0.5rem 1rem;
        border: 0;
        margin-bottom: 0.3rem;
    }

    .btn:hover,
    .btn-dark:hover,
    .btn-light:hover {
        background: #eece1a;
        color: #000;
    }

    .btn-dark {
        background: black;
        color: #fff;
    }

    .btn-light {
        background: #c4c4c4;
        color: #333;
    }

    #main-footer {
        text-align: center;
        padding: 1rem;
        background: white;
        color: black;
        height: 60px;
    }

    .colored_links {
        color: grey;
    }

    .colored_links:hover {
        color: cornflowerblue;
    }

    @media screen and (min-width: 1171px) {
        .projects {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media screen and (min-width: 769px) and (max-width: 1170px) {
        .projects {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media screen and (max-width: 768px) {
        main {
            align-items: center;
            text-align: center;
        }

        main .lg-heading {
            line-height: 1;
            margin-bottom: 1rem;
            font-size: 24px !important;
        }

        ul.menu-nav,
        div.menu-branding {
            float: none;
            width: 100%;
            min-height: 0;
        }

        ul.menu-nav.show,
        div.menu-branding.show {
            transform: translate3d(0, 0, 0);
        }

        .menu-nav {
            margin-top: -200px;
            height: 110vh;
            transform: translate3d(-100%, 0, 0);
            font-size: 24px;
        }

        .menu-branding {
            opacity: 0;
            height: 25vh;
            transform: translate3d(100%, 0, 0);
        }

        .menu-branding .portrait {
            background: url("../img/portrait_small.jpg");
            width: 150px;
            height: 150px;
        }

        .about-info {
            grid-template-areas: 'bioimage''bio''job1''job2''job3';
            grid-template-columns: 1fr;
        }

        .projects {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 500px) {
        main {
            padding: 2rem;
        }

        main #home h1 {
            margin-top: 10vh;
        }

        main .lg-heading {

            font-size: 18px !important;
        }

        main .sm-heading {

            font-size: 18px !important;
        }

        .projects {
            grid-template-columns: 1fr;
        }
    }



    /* Pure CSS text animation à retravailler */
    /*
    .container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        color: #fff;
        font-family: sans-serif;
        font-weight: 700;
    }

    .container span {
        display: block;
    }

    .primary {
        font-size: 30px;
        letter-spacing: 15px;
        display: inline-block;
        margin-bottom: 25px;
        animation: ok 3s 1;
        background: #2d3436;
    }

    .secondary {
        letter-spacing: 10px;
        display: none;
        color: orangered;
        position: relative;
        z-index: -1
    }

    @keyframes ok {
        0% {
            color: #2d3436;
            
            margin-bottom: -20px;
        }

        
        30% {
            letter-spacing: 30px;
            margin-bottom: -20px;
        }

        85% {
            letter-spacing: 15px;
            margin-bottom: -20px;
        }

    }

*/


    /* Pure CSS text animation 2 */

    /*
#container {
  color: #999;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  padding-top: 200px;
  position: fixed;
  width: 100%;
  bottom: 45%;
  display: block;
}

#flip {
  height: 50px;
  overflow: hidden;
}

#flip > div > div {
  color: #fff;
  padding: 4px 12px;
  height: 45px;
  margin-bottom: 45px;
  display: inline-block;
}

#flip div:first-child {
  animation: show 5s linear infinite;
}

#flip div div {
  background: #42c58a;
}

#flip div:first-child div {
  background: #4ec7f3;
}

#flip div:last-child div {
  background: #dc143c;
}

@keyframes show {
  0% {margin-top:-270px;}
  5%{margin-top:-180px;}
  33%{margin-top:-180px;}
  38%{margin-top:-90px;}
  66%{margin-top:-90px;}
  71%{margin-top:0px;}
  99.9%{margin-top:0px;}
  100%{margin-top:-270px;}
  
}
*/
