:root {
    color-scheme: dark;
}

a:link {
    color: #f8f9fb;
    text-decoration: none;
}

a:visited {
    color: #f8f9fb;
}

@font-face {
    font-family: 'VCR';
    src: url("fonts/VCR-c183c696cf6c0e2c0b9db199aafd899e.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #000000;
    font-family: VCR,monospace!important;
    /*font-size: 18px;*/
    line-height: 1;
    color: #f8f9fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /*min-height: 100vh;*/
}
@media (min-width: 1600px) {
    body{font-size: 18px;}
}
@media (min-width: 1025px) and (max-width: 1600px) {
    body{font-size: 14px;}
}
@media (max-width: 1025px) {
    body{font-size: 18px;}
}

.spacer{
    height: 4em;
}
.demonstration{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.test-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.main-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100vw;
    height: 80vh;
}

.title-shell{
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
}

.title-shell,
.animation-shell {
    flex: 1 1 50%;
    min-width: 500px;
    justify-content: center;
}
/* Tablette */
@media (max-width: 900px) {
    .title-shell,
    .animation-shell {
        min-width: 400px;

    }
}

/* Téléphone */
@media (max-width: 650px) {
    .title-shell,
    .animation-shell {
        min-width: 400px;
    }
}


.title{
    display: flex;
    font-size: xxx-large;
    font-weight: 600;
    margin-bottom: 1em;
    justify-content: center;
}
/* Tablette */
@media (max-width: 900px) {
    .title {
        font-size:1.5em;

    }
}

/* Téléphone */
@media (max-width: 650px) {
    .title {
        font-size:1.5em;
    }
}

.title-text-area > .title{
    margin-bottom: 0;
}

/* Téléphone */
@media (max-width: 650px) {
    .title-text-area {
        margin: 1em 4em 1em 4em;
        justify-items: center;

    }
}

.subtitle{
    font-size: large;
}
/* Tablette */
@media (max-width: 900px) {
    .subtitle {
        font-size:inherit;
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .subtitle {
        font-size:0.8em;
        margin:1em 0 0 0;
    }
}


.title-button-area button{
    border: #EDE9FE 2px solid;
    border-radius: 10%;
    font-size: large;
    background: black;
}
/* Tablette */
@media (max-width: 900px) {
    .title-button-area {
        font-size:inherit;
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .title-button-area {
        font-size:0.6em;

    }
}



/* BUTTON ===================================================================*/


[class*="btn-glitch-"] {
    display: inline-block;
    /*font-family: "VT323", monospace;*/
    font-family: VCR,monospace!important;
    border: 1px solid white;
    color: white;
    padding: 10px 13px;
    /*min-width: 175px;*/
    line-height: 1.5em;
    /*white-space: no-wrap;*/
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 15px;

    .text,
    .decoration {
        display: inline-block;
    }
    .decoration {
        display: inline-block;
        float: right;
    }
    &:hover,
    &:focus {
        animation-name: glitch;
        animation-duration: 0.2s;
        background-color: white;
        color: black;
        border: 1px solid white;

        .text-decoration {
            animation-name: blink;
            animation-duration: 0.1s;
            animation-iteration-count: infinite;
        }

        .decoration {
            animation-name: blink;
            animation-duration: 0.1s;
            animation-iteration-count: infinite;
        }
    }

    &:active {
        background: none;
        color: white;

        .text-decoration {
            animation-name: none;
        }

        .decoration {
            animation-name: none;
        }

        :before,
        :after {
            display: none;
        }
    }
}

@keyframes glitch {
    25% {
        background-color: wheat;
        transform: translateX(-10px);
        letter-spacing: 10px;
    }

    35% {
        background-color: snow;
        transform: translate(10px);
    }

    59% {
        opacity: 0;
    }

    60% {
        background-color: antiquewhite;
        transform: translate(-10px);
        filter: blur(5px);
    }

    100% {
        background-color: white;
        /*blur: (5px);*/
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes shrink {
    100% {
        width: 10%;
    }
}


/* /BUTTON ===================================================================*/

/* Animation Mirage ===================================================================*/
.layout {
    width: min(100%, 960px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 1600px) {
    .animation-shell { font-size: 1.5em; }
}

@media (min-width: 600px) and (max-width: 1600px) {
    .animation-shell { font-size: 1em; }
}

@media (max-width: 600px) {
    .animation-shell { font-size: 0.5em; }
}

.animation-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 16px;*/
}

.animation-stage {
    --cols: 54;
    --rows: 24;
    background-color: #000000;
    /*border: 2px solid rgba(255,255,255,0.3);*/
    /*border-radius: 6px;*/
    /*padding: 16px;*/
    box-shadow: 0 0 0 1px rgba(0,0,0,0.25) inset;
}

.animation-canvas {
    position: relative;
    display: block;
    white-space: pre;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    min-width: calc(var(--cols) * 1ch);
    min-height: calc(var(--rows) * 1em);
}

.frame {
    position: absolute;
    inset: 0;
    display: none;
    white-space: pre;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    pointer-events: none;
    width: fit-content;
}

.frame.active {
    display: block;
}

.controls {
    display: flex;
    justify-content: center;
    width: 100%;
}

.playback-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(14, 14, 16, 0.65);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
}

.playback-button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(22,22,26,0.9);
    color: #f8f9fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease, transform 120ms ease;
}

.playback-button svg {
    width: 20px;
    height: 20px;
    display: block;
}

.playback-button:hover:not(:disabled), .playback-button:focus-visible {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    outline: none;
}

.playback-button:active:not(:disabled) {
    transform: translateY(1px);
}

.playback-button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.playback-button.is-primary, .playback-button.is-active {
    background: rgba(139, 92, 246, 0.9);
    border-color: rgba(139, 92, 246, 0.95);
    color: #fff;
}

.playback-button.is-primary:hover:not(:disabled), .playback-button.is-active:hover:not(:disabled) {
    background: rgba(167, 139, 250, 0.95);
    border-color: rgba(167, 139, 250, 1);
}



/* /Animation Mirage ===================================================================*/

/* Containers ===================================================================*/


@media (min-width: 1000px) {
    .card{
        width: 390px;
        height: 254px;
    }
    .card .content {
        width: 386px;
        height: 250px;
    }
    .card-second-row p{
        font-size: 1.1em;
    }
    .card::before{
        width: 480px;
        height: 50px;
    }
    .card::after{
        width: 420px;
        height: 300px;
    }

}
@media (max-width: 600px) {
    .card{
        font-size: 1em;
        /*width: 350px;*/
        height: 224px;
    }
    .card .content {
        width: 346px;
        height: 220px;
    }
    .card-second-row p{
        font-size: 0.8em;
    }
    .card::before{
        width: 580px;
        height: 50px;
    }
    .card::after{
        width: 520px;
        height: 400px;
    }
}


.timeline{
    border-left: #EDE9FE 2px solid;
    height: fit-content;
    padding-bottom: 3em;

}
.timeline_point{
    display: flex;
    position: absolute;
    align-items: center;
    height: 254px; /* related with card heigh */
    margin: 0 0 0 -5px;
}

.card {
    background: #171717;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 3px 1px #00000088;
    cursor: pointer;
    margin-left: 1em;
}

.card-project{
    margin:0; !important;
    width: auto; !important;
}

.card .content {
    border-radius: 5px;
    background: #171717;
    z-index: 1;
    padding: 1em 0.8em 0.4em 0.8em;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}
.card-first-row{
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 0;
    align-items: center;
}
.card-first-row > p{
    margin: 0;
}

.work{
    /*height: 1em;*/
}
.between{
    margin-bottom: 1em;
    font-size: 0.9em;
}

.card-first-row > .social-media{
    display: flex;
    align-items: center;
}

.card-third-row > .tech{
    background-color: black;
    border: #262626 2px solid;
    padding: 0.4em;
}
@media (max-width: 600px) {
    .tech{
        font-size: 0.8em;
    }
}


.card-second-row{
    flex-grow: 2;
}
.card-second-row p{
    font-family: "VT323", monospace;
    font-weight: 200;
}

.card-third-row{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.card-third-row p {
    margin-bottom: 0;
}

.content::before {
    opacity: 0;
    transition: opacity 300ms;
    content: " ";
    display: block;
    background: white;
    width: 5px;
    height: 50px;
    position: absolute;
    filter: blur(50px);
    overflow: hidden;
}

.card:hover .content::before {
    opacity: 1;
}

.card::before {
    opacity: 0;
    content: " ";
    position: absolute;
    display: block;
    background: white;
    transition: opacity 300ms;
    animation: rotation_9018 8000ms infinite linear;
    animation-play-state: paused;
}

.card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.card::after {
    position: absolute;
    content: " ";
    display: block;
    background: #17171733;
    backdrop-filter: blur(50px);
}

@keyframes rotation_9018 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*=====================================================================*/
.card-client {
    background: #171717;
    width: 13rem;
    height: fit-content;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    border: 4px solid #232323;
    box-shadow: 0 6px 10px rgba(207, 212, 222, 1);
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.card-client:hover {
    transform: translateY(-10px);
}

.user-picture {
    overflow: hidden;
    object-fit: cover;
    width: 5rem;
    height: 5rem;
    border: 4px solid #464646;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.user-picture svg {
    width: 2.5rem;
    fill: currentColor;
}

.name-client {
    margin: 0;
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

.name-client span {
    display: block;
    font-weight: 200;
    font-size: 16px;
}

.social-media:before {
    content: " ";
    display: block;
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background: #171717;
}

.social-media a {
    position: relative;
    margin-right: 15px;
    text-decoration: none;
    color: inherit;
}

.social-media a:last-child {
    margin-right: 0;
}

.social-media a svg {
    width: 1.1rem;
    fill: currentColor;
}

/*-- Tooltip Social Media --*/
.tooltip-social {
    background: #262626;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    padding: 0.5rem 0.4rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -90%);
    transition: all 0.2s ease;
    z-index: 1;
}

.tooltip-social:after {
    content: " ";
    position: absolute;
    bottom: 1px;
    left: 50%;
    border: solid;
    border-width: 10px 10px 0 10px;
    border-color: transparent;
    transform: translate(-50%, 100%);
}

.social-media a .tooltip-social:after {
    border-top-color: #262626;
}

.social-media a:hover .tooltip-social {
    opacity: 1;
    transform: translate(-50%, -130%);
}

/* /Containers ===================================================================*/

/* FORM ===================================================================*/
.card_form {
    width: 300px;
    padding: 20px;
    background: #fff;
    border: 6px solid #171717;
    box-shadow: 12px 12px 0 white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card_form:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 white;
}

.card__title_form {
    font-size: 32px;
    font-weight: 900;
    color: #171717;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
}

.card__title_form::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    background-color: #171717;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.card_form:hover .card__title::after {
    transform: translateX(0);
}

.card__content_form {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 20px;
}

.card__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card__form input {
    padding: 10px;
    border: 3px solid #000;
    font-size: 16px;
    font-family: inherit;
    transition: transform 0.3s;
    width: calc(100% - 26px); /* Adjust for padding and border */
}

.card__form input:focus {
    outline: none;
    transform: scale(1.05);
    background-color: #000;
    color: #ffffff;
}

.card__button_form {
    border: 3px solid #000;
    background: #000;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    left: 20%;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 50%;
    height: 100%;
}

.card__button_form::before {
    content: "Sure?";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: #5ad641;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.card__button_form:hover::before {
    transform: translateY(0);
}

.card__button_form:active {
    transform: scale(0.95);
}

@keyframes glitch_form {
    0% {
        transform: translate(2px, 2px);
    }
    25% {
        transform: translate(-2px, -2px);
    }
    50% {
        transform: translate(-2px, 2px);
    }
    75% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(2px, 2px);
    }
}

.glitch_form {
    animation: glitch 0.3s infinite;
}
/* /FORM ===================================================================*/

/* SKILLS ===================================================================*/

.shadow__skills {
    display: flex;
    height: 7em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*width: fit-content;*/
    padding: 10px 20px;
    border: none;
    font-size: 17px;
    color: #fff;
    border-radius: 7px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
    width: 7em;
}

.shadow__skills > svg{
    height: 4em;
    width: 4em;
}
.shadow__skills p{
    margin: 0.4em 0 0 0;
    font-size: 0.7em;

}

.shadow__skills {
    background: #171717;
    box-shadow: 0 0 25px white;
}

.shadow__skills:hover {
    box-shadow: 0 0 5px white,
    0 0 25px white,
    0 0 50px white,
    0 0 100px white;
}

.ruban-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.ruban-text{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.ruban-img{
    /*width: 100%;*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-around;*/
    display: grid;
    /*grid-template-columns: repeat(4, 1fr);*/
    grid-gap: 3em;
    margin-bottom: 2em;
}
@media (min-width: 800px) {
    .ruban-img { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .ruban-img { grid-template-columns: repeat(2, 1fr); }
}



/* /SKILLS ===================================================================*/


/* ANIMATIONS ===================================================================*/
.terminal {
    border: 1px solid #00ff88;
    width: 100%;
    color: #EDE9FE;
    overflow: hidden;
}

pre {
    margin: 0;
    white-space: pre;
}
/* /ANIMATIONS ===================================================================*/


/* BTN Glitch ===================================================================*/

@media (min-width: 1000px) {
    .banner_btn_glitch{
        font-size: 4em;
    }
    .banner{
        font-size: 0.3em;
        justify-content: flex-end;
        padding-right: 40em;
        height: 10em;
    }
}
@media (max-width: 600px) {
    .banner_btn_glitch{
        font-size: 1em;
        padding: 0; !important;
    }
    .banner_btn_glitch,button::after{
        padding: 0; !important;
    }
    .banner{
        font-size: 1em;
        justify-content: center;
        padding-right: 0;
        height: 3em;
    }
}


.banner{
    background-color: rgba(23, 23, 23, 0.6);
    display: flex;
    flex-direction: row;
    border-bottom: #EDE9FE 2px solid;
    width: 100%;
    /*justify-content: flex-end;*/
    margin-top: 1em;
    padding-bottom: 1em;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    /*z-index: 100;*/
}



.banner_btn_glitch,button::after {
    padding: 10px 1em;
    /*font-size: 20px;*/
    border: none;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    position: relative;
    font-family: VCR,monospace!important;
}

.banner_btn_glitch::after {
    font-size: 20px;
    --move1: inset(50% 50% 50% 50%);
    --move2: inset(31% 0 40% 0);
    --move3: inset(39% 0 15% 0);
    --move4: inset(45% 0 40% 0);
    --move5: inset(45% 0 6% 0);
    --move6: inset(14% 0 61% 0);
    clip-path: var(--move1);
    content: 'GLITCH';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}

.banner_btn_glitch:hover::after {
    animation: glitch_4011 1s;
    /*text-shadow: 10 10px 10px black;*/
    animation-timing-function: steps(2, end);
    text-shadow: -3px -3px 0 #ffffff, 3px 3px 0 #E94BE8;
    background-color: transparent;
    border: 3px solid rgb(255, 255, 255);
}

.banner_btn_glitch:hover {
    text-shadow: -1px -1px 0 #ffffff, 1px 1px 0 #E94BE8;
}

.banner_btn_glitch:hover {
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 10px 10px -10px rgb(255, 255, 255);
}

@keyframes glitch_4011 {
    0% {
        clip-path: var(--move1);
        transform: translate(0px,-10px);
    }

    10% {
        clip-path: var(--move2);
        transform: translate(-10px,10px);
    }

    20% {
        clip-path: var(--move3);
        transform: translate(10px,0px);
    }

    30% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }

    40% {
        clip-path: var(--move5);
        transform: translate(10px,-10px);
    }

    50% {
        clip-path: var(--move6);
        transform: translate(-10px,10px);
    }

    60% {
        clip-path: var(--move1);
        transform: translate(10px,-10px);
    }

    70% {
        clip-path: var(--move3);
        transform: translate(-10px,10px);
    }

    80% {
        clip-path: var(--move2);
        transform: translate(10px,-10px);
    }

    90% {
        clip-path: var(--move4);
        transform: translate(-10px,10px);
    }

    100% {
        clip-path: var(--move1);
        transform: translate(0);
    }
}

/* /BTN Glitch ===================================================================*/


@media (min-width: 1000px) {
    .ascii-train { font-size: 1em; }
}
@media (max-width: 999px) {
    .ascii-train { font-size: 1em; }
}


.ascii-train {
    width: 100%;
    font-family: monospace;
    white-space: pre; /* essentiel */
    line-height: 1.1;
}
.underline {
    text-decoration: underline;
    font-weight: bold;

}


/* page ===================================================================*/

.container{
    padding-top: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 0 auto;
}
.about_me{
    width: 100%;
}
@media (max-width: 600px) {
    .about_me {
        font-size: 0.5em;
    }
}

a.Linked,a.linked:visited,a.linked:active,a.linked:link{
    color: #0e76a8; !important;
    /*background-color: #EDE9FE;*/
}
a.In,a.In:visited,a.In:active,a.In:link{
    background-color: #0e76a8; !important;
}



.about_me_container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /*margin-bottom: 2em;*/
    /*width: 100%;*/
    align-items: center;
}

@media (max-width: 768px) {
    .about_me_container {
        /*flex-direction: column;*/
        /*align-items: center;*/
    }
}


.resizable-box{
    position: relative;
    width: 400px;
    padding: 30px;
    /*margin: 50px 0;*/
    font-family: monospace;
    color: #fff;
}
@media (max-width: 600px) {
    .resizable-box {
        font-size: 1.1em;!important;
        padding: 1em;
    }
    .resizable-content{
        font-size: 1.1em;!important;
    }
}

.resizable-content {
    position: relative;
    z-index: 2;
    text-align: justify;
}

.resizable-border {
    position: absolute;
    /*font-family: monospace;*/
    white-space: nowrap;
    overflow: hidden;
    pointer-events: none;
}

.resizable-border.top {
    top: 0;
    left: 0;
    width: 100%;
}
.resizable-border.right {
    top: 0;
    right: 0;
    height: 100%;
    writing-mode: vertical-rl;
    /*text-orientation: upright;*/
}
.resizable-border.bottom {
    bottom: 0;
    left: 0;
    width: 100%;
}
.resizable-border.left {
    top: 0;
    left: 0;
    height: 100%;
    writing-mode: vertical-rl;
    /*text-orientation: upright;*/

}

.test-train{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.test-nuage{
    font-family: monospace;
    white-space: pre; /* essentiel */
    line-height: 1.1;
}






#ascii-trail {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    font-family: monospace;
    user-select: none;
    z-index: -1;
}

.ascii-char {
    z-index: -1;
    position: absolute;
    font-size: 16px;
    /*color: #00ff88;*/
    opacity: 1;
    animation: fall 1s linear forwards;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@keyframes fall {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}


/* /page ===================================================================*/


/* Project e ===================================================================*/

.ProjectMainContainer{
    display: flex;
    flex-direction: column;
    width: 100%;

    justify-content: center;
    align-items: center;
}

.ProjectContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    justify-items: center
}

/* Tablette */
@media (max-width: 900px) {
    .ProjectContainer {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .ProjectContainer {
        grid-template-columns: 1fr;
    }
}





.head-project{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #ffffff;
    height: 2.5em;
    padding: 5px 12px;
    border-bottom: 3px solid #505050;
}
.icon-project{
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    color: black;

}
.icon-project > a > svg{
    width: 2em;
    height: 2em;
    color: black;
}

.head-title-project {
    /*font-family: Montserrat, sans-serif;*/

    font-weight: 600;
    /*width: 100%;*/
    color: #000000;
    align-self: center;
}
/* Téléphone */
@media (min-width: 651px) {
    .head-title-project {
        font-size: 1.3em;
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .head-title-project {
        font-size: 1em;
    }
}

.card-project {
    /*font-family: Montserrat, sans-serif;*/

    height: auto;
    translate: -6px -6px;
    background: #171717;
    border: 3px solid #505050;
    box-shadow: 12px 12px 0 #505050;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 10em;
}
/* Autre */
@media (min-width: 651px) {
    .card-project {
        width: 400px;
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .card-project {
        width: 300px;
    }
}


.content-project {
    padding: 8px 12px;
    /*font-size: 1em;*/
    /*font-weight: 600;*/
    display: flex;
    flex-direction: column;

}
/* Autre */
@media (min-width: 651px) {
    .content-project {
        font-size: 1em;
        height: 85%;
    }
}

/* Téléphone */
@media (max-width: 650px) {
    .content-project {
        font-size: 0.8em;
        height: 78%;
    }
}

.text-project{

}

.button-project {
    padding: 5px 10px;
    margin-top: 10px;
    border: 3px solid #505050;
    box-shadow: 3px 3px 0 #505050;
    font-weight: 750;
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-project:hover {
    translate: 1.5px 1.5px;
    box-shadow: 1.5px 1.5px 0 #505050;
    background: #505050;
    color: #ffffff;
}

.button-project:active {
    translate: 3px 3px;
    box-shadow: 0 0 0 #505050;
}

.card-project:hover {
    translate: -6px;
}
.tech-line-project > .tech{
    background-color: black;
    border: #262626 2px solid;
    padding: 0.4em;
}

.tech-line-project{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;;
    flex-wrap: wrap;
    margin-top: auto;

}




/* /Project e ===================================================================*/