@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

    /********* Tu connais *********/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 0.3s;
}

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem 0;
}

   /********* Modification du scroll *********/

body::-webkit-scrollbar {
    width: 12.5px;
}

body::-webkit-scrollbar-track {
    background: #53a4ab;
}

body::-webkit-scrollbar-thumb {
    background-color: #04041c; 
    border-radius: 9px;
    border: 1px solid #f1f0a9;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
}

h2 {
    font-family: 'Taviraj', serif;
}

h3 {
    font-family: 'Noto Sans JP', sans-serif;
}

    /********* Header *********/

header {
    position: sticky;
    width: 100%;
    height: 15vh;
    top: 0;
    left: 0;  
    background-color: #04041c;
    padding: 0 2.5rem 1.5rem;
    z-index: 500;
}

.langs {
    text-align: right;
    font-size: 15px;
    display: flex;
    justify-content: flex-end;
}

.lang {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(200, 200, 200);
    margin: 0.125rem 0.5rem;
}

.lang img {
    margin: 0 0.125rem;
    width: 20px;
}

.lang:hover {
    color: #f1f0a9;
}

nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 65px;
}

.toggle {
    display: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 250px;
}

.menu-lien {
    display: flex;
    font-size: 18px;
    color: rgb(200, 200, 200);
    position: relative;
    padding: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu-lien:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 50%;
    height: 2px;
    background: #f1f0a9;
    transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menu-lien:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: 50%;
    height: 2px;
    background: #f1f0a9;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); 
}

.menu-lien:hover {
    color: white;
}

.menu-lien:hover::before {
    right: 0;
}

.menu-lien:hover::after {
    left: 0;
}

#active {
    background-color: #255a5f;
    border-radius: 9px;
}

.btn {
    border-width: 1px;
    padding: 0.75rem;
    margin: 1rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    background: whitesmoke;
    border-radius: 9px;
    transition: 0.3s;
    border: 1px solid whitesmoke;
}

.lien-btn {
    padding: 0.125rem 0.625rem;
    color: #04041c;
    display: inline-block;
    background: whitesmoke;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 1rem 0 1rem;
    border-radius: 9px;
    transition: 0.3s;
    border: 1px solid whitesmoke;
    font-size: 13.5px;
}

.btn:hover, .btn.active, .lien-btn:hover{
    background-color: #04041c;
    color: whitesmoke;
}

    /********* Accueil *********/

        /********* Présentation *********/

.prez { 
    background-color: #255a5f;
    color: whitesmoke;
    padding: 2rem;
}

.prez h1 {
    font-size: 56px;
    line-height: 3.5rem;
    letter-spacing: 1rem;
    color: #f1f0a9;
}

.prez h2, .proj h2 {
    font-size: 35px;
    color: #f1f0a9;
}

.prez p {
    font-size: 16px;
}

.prez-corps {
    display: flex;
    justify-content: space-between;
}

.prez-corps-block {
    width: 45%;
    padding: 1rem;
    line-height: 2rem;
}

.prez-corps-block img {
    text-align: center;
    width: 425px;
    border-radius: 6%;
}

.under {
    color: #f1f0a9;
}

#prenom {
    text-transform: lowercase;
    color: #f1f0a9;
}

#nom {
    color: whitesmoke;
}

        /********* Quelques Projets *********/

.proj {
    background-color: #53a4ab;
}

.proj h2 {
    padding: 1.25rem 0rem 0rem 1.25rem;
}

.proj-corps {
    display: flex;
    align-items: center;
    color: whitesmoke;
}

.proj-corps-block {
    width: 20%;
    margin: 2rem;
}

.proj-corps-block img {
    width: 100%;
    transition: 0.3s;
    filter: grayscale(95%);
    border: 2px solid whitesmoke;
    border-radius: 30px 5px;
}

.proj-corps-block img:hover {
    filter: none;
}

#voirplus {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

#voirplus a {
    padding: 0.5rem 1rem;
}

    /********* Footer *********/

footer { 
    position: relative;
    width: 100%;
    bottom:0;
    background-color: #04041c;
}

footer ul {
    margin: 0;
    list-style: none;
    line-height: 1.6;
}

footer ul li {
    display: inline-block;
    padding: 0 15px;
}

footer ul li a {
    text-decoration: none;
    color: rgb(200, 200, 200);
    transition: 0.3s;
}

footer ul li a:hover {
    color: #f1f0a9;
}

        /********* Contact *********/

.mail {
    display: flex;
    justify-content: center;
    padding: 1.25rem 0 0;
}

.mail a {
    font-size: 17.5px;
    text-decoration: none;    
    color: rgb(200, 200, 200);
}

.rezo {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 1.25rem 0 1rem;
    color: rgb(200, 200, 200);
    text-align: center;
    background-color: #04041c;
}
    
.rezo a {
    text-decoration: none;
    font-size: 30px;
    padding-top: 0.75rem;
    line-height: 38px;
    color: inherit;
    transition: 0.5s;
    display: inline-block;
}
    
.rezo a:hover, .mail a:hover {
    color: #f1f0a9;
}

        /********* Copyrights *********/

.copy {
    background-color: #02020c;
    padding: 0.5rem 0.25rem;
    color: rgb(200, 200, 200);
    text-align: center;
    font-size: 15px;
}

    /********* Page Mes Projets *********/

.mesprojets {
    background-color: #255a5f;
    min-height: 85vh;
}

.mesprojets h1 {
    font-size: 45px;
    text-align: center;
    padding: 3rem;
    color: whitesmoke;
}

#myBtnContainer {
    text-align: center;
}

.row, .row > .column {
    padding: 8px;
}

.column {
    float: left;
    width: 25%;
    display: none;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.content img {
    width: 100%;
    border: 2px solid whitesmoke;
    transition: 0.3s;
    filter: grayscale(95%);
    border-radius: 20px;
}

.content img:hover {
    filter: none;
    width: 100%;
}

.show {
    display: block;
}

        /********* Pages des Projets *********/

.projets { 
    background-color: #255a5f;
    color: whitesmoke;
    padding: 2rem;
}

.projets h1 {
    font-size: 55px;
    text-transform: uppercase;
    line-height: 3.5rem;
    letter-spacing: 0.75rem;
}

.projets p {
    font-size: 18px;
}

.projets-corps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projets-corps-block {
    width: 80%;
    padding: 1rem;
    line-height: 2rem;
    text-align: center;
}

.projets-corps-block img {
    width: 600px;
}

.projets-corps-block p {
    margin: 1rem 0;
}

.projets-corps-block h2 {
    letter-spacing: 0.25rem;
    line-height: 3rem;
    text-transform: uppercase;
    font-size: 45px;
    color: #f1f0a9; 
}

.minia {
    border-radius: 20px;
}

.retour {
    width: 75%;
    display: flex;
    justify-content: flex-start;
}

.outils {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.outils img {
    width: 5%;
}

.lien {
    color: #f1f0a9;
}

.asset img {
    width: 60%;
    border-radius: 10px;
}

.asset2 img {
    width: 45%;
    border-radius: 10px;
}

.asset3 img {
    width: 30%;
    border-radius: 10px;
}

.asset, .projet-logo {
    display: flex;
    justify-content: space-evenly;
}

.asset img, .asset2 img, .asset3 img, .projet-logo img {
    border: 2px solid #f1f0a9;
}

.projet-logo img {
    width: 35%;    
    border-radius: 6%;
}

#interlink {
    transition: 0.3s;
}

#interlink:hover {
    color: #53a4ab;
}

    /********* Mentions Légales *********/

.mention {
    padding: 2.5rem;
    background-color: #255a5f   ;
    color: rgb(200, 200, 200);
    font-size: 20px;
    text-align: center;
}

.mention h2 {
    font-size: 35px;
    color: #f1f0a9;
}

    /********* Responsive *********/

@media all and (max-width: 1080px) {
    
        /********* Header *********/

    .logo img {
        width: 60px;
    }

        /********* Accueil *********/

    .prez-corps-block img {
        width: 400px;
    }

    .proj-corps-block {
        margin: 1.75rem;
    }

        /********* Pages des Projets *********/

    .projets h1 {
        font-size: 50px;
    }

    .projets-corps-block h2 {
        font-size: 40px;
    }
    
}

@media all and (max-width: 991px) {
     
        /********* Présentation *********/

    .prez {
        padding: 2rem 0;
    }

    .prez h1 {
        font-size: 50px;
        line-height: 3rem;
        letter-spacing: 0.5rem;
    }

    .prez-corps-block img {
        width: 350px;
    }

    .prez-corps-block {
        width: 47.5%;
        line-height: 1.5rem;
    }

    .proj-corps-block {
        margin: 1.25rem;
    }

        /********* Page Mes Projets *********/

    .column {
        width: 33.3%;
    }

        /********* Pages des Projets *********/

    .projets-corps-block {
        width: 85%;
    }

    .projets-corps-block img {
        width: 550px;
    }

    .projets h1 {
        font-size: 47.5px;
    }

    .projets-corps-block h2 {
        font-size: 37.5px;
    }

    .outils img {
        width: 7.5%;
    }

    .asset {
        justify-content: space-around;
    }

    .projet-logo img {
        width: 35%;    
    }

}

@media all and (max-width: 820px) {

        /********* Header *********/

    .logo img {
        width: 55px;
    }
    
        /********* Accueil *********/

    .prez {
        padding: 1rem 0;
    }
    
    .prez h1 {
        font-size: 45px;
        line-height: 2.5rem;
        letter-spacing: 0.25rem;
    }

    .prez-corps-block img {
        width: 300px;
    }

    .prez-corps-block {
        width: 50%;
    }

    .proj-corps-block {
        margin: 1rem;
    }
        /********* Contact *********/

    .rezo {
        padding: 1.125rem 0 1.125rem;
    }

        /********* Pages des Projets *********/

    .projets {
        padding: 2rem;
    }

    .projets h1 {
        font-size: 45px;
        letter-spacing: 0.5rem;
    }

    .projets-corps-block h2 {
        font-size: 35px;
    }

    .projets-corps-block {
        width: 90%;
    }

    .projets-corps-block img {
        width: 525px;
    }

    .projet-logo img {
        width: 40%;
    }

    .outils img {
        width: 7.5%;
    }

    #unijam {
        font-size: 50px;
    }
}

@media all and (max-width: 730px) {
      
    header {
        padding: 0 1.5rem 1.5rem;
    }
    
        /********* Menu Burger *********/

   .toggle {
        display: block;
        font-size: 2rem;
        color: rgb(200, 200, 200);
        cursor: pointer;
        position: relative;
        z-index: 20;
    }

    .langs {
        position: relative;
        z-index: 25;
    }

    .logo {
        position: relative;
        z-index: 20;
    }

    .ouvrir, .ouvert .fermer {
        display: block;
    }

    .fermer, .ouvert .ouvrir {
        display: none;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 25vh;
        background-color: #04041c;
        flex-direction: column;
        padding: 2rem;
        justify-content: space-around;
        transform: translateY(-100%);
        transition: transform 1s;
    }

    .menu-lien {
        font-size: 1.25rem;
    }

    .ouvert .menu {
        transform: translateY(0);
    }

        /********* Boutons *********/

    .btn {
        padding: 0.5rem;
        margin: 0.75rem 0 0.75rem;
        text-transform: none;
        letter-spacing: 0px;
        border-radius: 5px;
    }

    .lien-btn  {
        text-transform: none;
        letter-spacing: 0px;
        border-radius: 5px;
        padding: 0.125rem 0.625rem;
        margin: 0.75rem 0 0.75rem;
    }

    #voirplus a {
        padding: 0.375rem 0.875rem;
    }

        /********* Accueil *********/

    .prez, .proj {
        padding: 1rem 0;
    }

    .prez-corps {
        display: flex;
        flex-direction: column;
    }

    .prez-corps-block {
        width: 100%;
        text-align: center;
    }
    
    .prez h1 {
        font-size: 40px;
        line-height: 2.5rem;
        letter-spacing: 0rem;
    }

    .prez-corps-block img {
        width: 250px;
    }

    .proj-corps {
        flex-direction: column;
        align-items: center;
    }

    .proj-corps-block {
        width: 50%;
    }

        /********* Page Mes Projets *********/

    .column {
        width: 50%;
    }

        /********* Pages des Projets *********/

    .projets h1 {
        font-size: 42.5px;
        letter-spacing: 0.25rem;
    }
    
    .projets-corps-block h2 {
        font-size: 32.5px;
        line-height: 2.75rem;
    }
    
    .projets-corps-block {
        width: 95%;
    }
    
    .projets-corps-block img {
        width: 450px;
    }
    
    .outils img {
        width: 10%;
    }

    .projet-logo img {
        width: 40%;    
    }

    #unijam {
        font-size: 45px;
    }

}

@media all and (max-width: 600px) {

        /********* Header *********/

    .logo img {
        width: 50px;
    }

        /********* Contact *********/

    .rezo {
        flex-wrap: wrap;
    }

        /********* Pages des Projets *********/
    
    .projets-corps-block {
        width: 100%;
    }
    
    .projets-corps-block img {
        width: 400px;
    }

    .projets h1 {
        letter-spacing: 0.25rem;
    }

    .outils img {
        width: 10%;
    }

    .projet-logo img {
        width: 40%;
    }

    #unijam {
        font-size: 42.5px;
    }
    
}

@media all and (max-width: 540px) {

        /********* Pages des Projets *********/

    .projets {
        padding: 2rem;
    }

    .projets-corps-block {
        padding: 0.75rem;
        line-height: 2rem;
    }
    
    .projets-corps-block img {
        width: 325px;
    }

    .projets h1 {
        letter-spacing: 0;
        font-size: 40px;
        line-height: 3rem;
    }

    .projets-corps-block h2 {
        font-size: 30px;
    }

    .projets p {
        font-size: 17.5px;
        padding: 0;
    }

    .asset img, .asset2 img, .asset3 img {
        width: 80%;
    }

    .outils img {
        width: 12.5%;
    }

    .projet-logo img {
        width: 40%;
    }

    #unijam {
        font-size: 40px;
    }

        /********* Copyrights *********/

    .copy {
        font-size: 12.5px;
    }
    
}

@media all and (max-width: 460px) {
    
        /********* Contact *********/

    .mail a {
        font-size: 15px;
    }
    
        /********* Pages des Projets *********/

    .projets-corps-block img {
        width: 320px;
    }

    .outils img {
        width: 15%;
    }

    .projets p {
        font-size: 15px;
    }

    .projet-logo img {
        width: 40%;
    }

    #unijam {
        font-size: 35px;
    }

}

@media all and (max-width: 440px) { 

        /********* Pages des Projets *********/

    .projets-corps-block img {
        width: 300px;
    }

    .outils img {
        width: 15%;
    }

    .projet-logo img {
        width: 40%;
    }

}

@media all and (max-width: 420px) {
    
        /********* Page Mes Projets *********/

    .mesprojets h1 {
        padding: 1.5rem;
    }

        /********* Pages des Projets *********/

    .projets h1 {
        font-size: 35px;
        line-height: 2.5rem;
    }

    .projets-corps-block h2 {
        font-size: 25px;
        line-height: 2.5rem;
    }

    h3 {
        font-size: 15px;
    }
    
    .projets-corps-block img {
        width: 250px;
    }

    .outils img {
        width: 15%;
    }

    .projet-logo {
        justify-content: space-around;
    }

    .projet-logo img {
        width: 45%;
    }

    #unijam {
        font-size: 30px;
    }

}

@media all and (max-width: 380px) {

            /********* Contact *********/
    
    .mail a {
        font-size: 12.5px;
    }

        /********* Page Mes Projets *********/

    .mesprojets h1 {
        font-size: 40px;
        padding: 1.5rem;
    }

    .content img {
        border-radius: 15px;
    }

        /********* Pages des Projets *********/
    
    .projets-corps-block img {
        width: 225px;
    }

    .outils img {
        width: 15%;
    }

    .projet-logo img {
        width: 45%;
    }

    #unijam {
        font-size: 25px;
    }

        /********* Mentions Légales *********/

    .mention {
        font-size: 17.5px;
    }

    .mention h2 {
        font-size: 30px;
    }

}

@media all and (max-width: 350px) {
    
        /********* Contact *********/

    .rezo a {
        font-size: 30px;
    }

        /********* Page Mes Projets *********/

    .mesprojets h1 {
        font-size: 38px;
        padding: 1.25rem;
    }

        /********* Pages des Projets *********/

    .projets h1 {
        font-size: 32.5px;
    }

    .projets-corps-block h2 {
        font-size: 22.5px;
        line-height: 2.25rem;
    }

    .asset img, .asset2 img, .asset3 img {
        width: 90%;
    }

    .projets-corps-block img {
        width: 215px;
    }

    .outils img {
        width: 15%;
    }

    .projet-logo img {
        width: 45%;
    }

}

@media all and (max-width: 330px) {

        /********* Header *********/
    
    .langs {
        font-size: 10px;
    }
    
    .lang {
        margin: 0rem 0.25rem;
    }
    
    .lang img {
        margin: 0 0.125rem;
        width: 12px;
    }

    .logo img {
        width: 40px;
    }

        /********* Copyrights *********/

    .copy {
        padding: 0.5rem 0.125rem;
    }
    
        /********* Présentation *********/
    
    .prez h1 {
        font-size: 35px;
    }
    
    .prez-corps-block img {
        width: 200px;
    }

    .prez h2, .proj h2 {
        font-size: 30px;
    }

    .prez p {
        font-size: 12.5px;
    }
    
        /********* Page Mes Projets *********/

    .mesprojets h1 {
        font-size: 32px;
        padding: 0.75rem;
    }
    
        /********* Pages des Projets *********/

    .projets {
        padding: 0.75rem;
    }

    .projets-corps-block {
        padding: 0rem;
        line-height: 1.5rem;
    }

    .projets-corps-block img {
        width: 175px;
    }

    .projets h1 {
        font-size: 27.5px;
        line-height: 2rem;
        padding: 0.75rem 0 0;
    }

    .projets p {
        padding: 0.125rem;
    }
    
    .outils img {
        width: 15%;
    }

    .projet-logo img {
        width: 45%;
    }

        /********* Mentions Légales *********/

    .mention {
        font-size: 15px;
    }

          /********* Boutons *********/

    .lien-btn  {
        padding: 0.125rem 0.5rem;
    }

}

@media all and (max-width: 300px) {

        /********* Contact *********/
    
    .mail a {
        font-size: 10px;
    }

        /********* Mentions Légales *********/

    .mention {
        font-size: 12.5px;
    }
        
    .mention h2 {
        font-size: 25px;
    }
    
        /********* Copyrights *********/

    .copy {
        font-size: 10px;
    }
 
}

@media all and (max-width: 280px) {

        /********* Accueil *********/

    .prez-corps-block img {
        width: 150px;
    }

    .proj-corps-block img {
        border-radius: 20px 0px;
    }

        /********* Page Mes Projets *********/

    .mesprojets h1 {
        font-size: 30px;
        padding: 0.5rem;
    }

    .content img {
        border-radius: 10px;
    }
    
        /********* Pages des Projets *********/

    .projets p {
        font-size: 12.5px;
    }

    .projets-corps-block h2 {
        font-size: 20px;
        line-height: 2rem;
    }

    h3 {
        font-size: 14px;
    }
    
    #unijam {
        font-size: 22.5px;
    }

        /********* Mentions Légales *********/

    .mention {
        font-size: 10px;
    }
    
    .mention h2 {
        font-size: 20px;
    }

}