/* general settings */
@font-face {
    font-family: 'Matrix';
    src: url(../fonts/matrix.ttf);
}
@font-face {
    font-family: 'Chicago';
    src: url(../fonts/chicago-opentype.otf);
}
@font-face {
    font-family: 'Neuropol';
    src: url(../fonts/neuropol.otf);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}
:root {
    --navbar-height: 80px;
    --primary:               rgb(96, 255, 157);
    --secondary:             #010;
    --tertiary:              rgb(135, 205, 255);
}

/* custom css*/
body {
    position: relative;
    background: var(--secondary);
    overflow: hidden;
}
header {
    position: relative;
    height: var(--navbar-height);
    transition: .25s;
    z-index: 10;
}
/* .header-reduced {
    position: sticky;
    top: 0;
    height: var(--navbar-height);
} */
/* header #logo {
    width: 100px;
    height: 40px;
    background: red;
} */

#headerNav button p {
    pointer-events: none;
}
/* header nav a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    color: var(--primary);
    text-decoration: none;
    transition: 1s;
} */


/* nav */
#headerNav {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    pointer-events: none;
}
#headerNav button {
    position: relative;
    
    overflow: hidden;
    /* height: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    background: none;
    backdrop-filter: blur(12px) brightness(40%);
    color: var(--clr);
    letter-spacing: .05em;
    border: none;
    transform: scaleY(0);
    cursor: pointer;
    pointer-events: all;
    transition: 1s;
    transition-delay: 1s;
}

.nav-button-visible {
    transform: scaleY(1) !important;
    box-shadow: inset 0 0 4px var(--primary),
                      0 0 4px var(--primary);
}
header button p::before,
header button p::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--primary);
    transition: .25s;
}
header button p::before {
    top: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
header button:hover p::before,
.header-nav-highlight p::before {
    transform-origin: left;
    transform: scaleX(1);
    box-shadow: 0 0 4px var(--primary),
                0 0 8px var(--primary),
                0 0 16px var(--primary);
}
header button p::after {
    bottom: 0;
    right: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
header button:hover p::after,
.header-nav-highlight p::after {
    transform-origin: right;
    transform: scaleX(1);
    box-shadow: 0 0 4px var(--primary),
                0 0 8px var(--primary),
                0 0 32px var(--primary);
}
/* #headerNav button:nth-child(1),
#headerNav button:nth-child(4) {
    width: 90px;
}
#headerNav button:nth-child(2),
#headerNav button:nth-child(3) {
    width: 130px;
} */
#headerNav button p {
    position: relative;
    padding: 1rem;
    font-family: 'Neuropol';
    font-size: 1.15em;
    font-weight: 600;
    letter-spacing: .2rem;
    pointer-events: none;
    text-shadow: 0 0 2px var(--primary);
    z-index: 2;
}
/* #headerNav button:hover,
.header-nav-highlight {
    box-shadow: none !important;
} */
#headerNav button:hover p,
.header-nav-highlight p {
    filter: brightness(1.5);
    text-shadow: 0 0 4px var(--primary) !important;
}
#headerNav button:hover span:nth-child(2),
.header-nav-highlight span:nth-child(2),
.mode:hover span:nth-child(2) {
    height: 0 !important;
}
#headerNav button:hover span:nth-child(3),
.header-nav-highlight span:nth-child(3),
.mode:hover span:nth-child(3) {
    width: 0 !important;
}
#headerNav button span,
.mode span {
    position: absolute;
    background: var(--theme-clr1);
    transition: .25s;
    pointer-events: none;
    z-index: 1;
}
#headerNav button span:nth-child(2),
.mode span:nth-child(2) {
    width: calc(100% + 6px);
    height: 10px;
}
#headerNav button span:nth-child(3),
.mode span:nth-child(3) {
    width: 30px;
    height: calc(100% + 6px);
}
#mobileNav {
    display: none;
    opacity: 0;
    pointer-events: none;
}
#hamburgerButton {
    position: relative;
    width: 31px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#hamburgerButton span {
    position: absolute;
    width: 25px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary);
    box-shadow: 0 0 4px var(--primary);
    pointer-events: none;
    transition: .25s;
}
#hamburgerButton span:nth-child(3) {
    transform: translateY(7px);
}
#hamburgerButton span:nth-child(4) {
    transform: translateY(-7px);
}
#hamburgerButton input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
#hamburgerButton input:checked ~ #hamburgerMenu {
    transform: translateX(0);
}
#hamburgerButton input:checked ~ span:nth-child(2) {
    transform: scaleX(0);
}
#hamburgerButton input:checked ~ span:nth-child(3) {
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--primary);
}
#hamburgerButton input:checked ~ span:nth-child(4) {
    transform: rotate(-45deg);
    box-shadow: 0 0 8px var(--primary);
}
#hamburgerMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(-100%);
    background: #194b21b6;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 2px var(--primary);
    padding-top: 80px;
    transition: .5s ease-in;
    z-index: -1;
}
#hamburgerMenu nav {
    width: auto;
    height: 100%;
    padding-bottom: 100vh;
}
#hamburgerMenu p {
    width: 100%;
    margin-bottom: 1rem;
    padding: 10px;
    color: var(--primary);
    font-family: 'Neuropol';
    text-align: left;
    letter-spacing: .01em;
}
#hamburgerMenu p:hover {
    color: var(--secondary);
    background: var(--primary);
    user-select: none;
    cursor: pointer;
}

/* markers */
main {
    position: relative;
    /* top: 80px; */
    left: 0;
    width: 100%;
    max-width: 1920px;
    min-height: 450px;
    height: calc(100% - 80px);
    display: flex;
    justify-content: center;
    /* opacity: 0; */
}
.content-index {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.markers-wrapper {
    position: relative;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    opacity: 0;
}
.marker button {
    width: 35px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    backdrop-filter: blur(12px) brightness(40%);
    border: none;
    cursor: pointer;
    pointer-events: all;
}
.marker button:hover {
    background: var(--clr);
    box-shadow: 0 0 4px var(--clr),
                0 0 8px var(--clr),
                0 0 16px var(--clr);
}
.marker button:hover p {
    color: #000;
    opacity: 1;
    transition-delay: 0s;
}
.marker button span {
    width: 5px;
    height: 100%;
    background: var(--clr);
    opacity: .2;
    transition: .25s;
    pointer-events: none;
}
.marker button p {
    padding: 0 10px;
    font-size: 1em;
    font-weight: 600;
    color: var(--clr);
    font-family: 'Chicago';
    transition: .25s;
    opacity: .2;
    /* transition-delay: .15s; */
    pointer-events: none;
}
.marker-visible {
    /* background: var(--theme-clr1) !important; */
    box-shadow: inset 0 0 4px var(--clr), 0 0 4px var(--clr);
    border-top: 1px solid var(--clr);
    border-bottom: 1px solid var(--clr);
    filter: brightness(1.5);
}
.marker-span-visible {
    opacity: 1 !important;
}
.marker-p-visible {
    text-shadow: 0 0 4px var(--primary),
                 0 0 8px var(--primary),
                 0 0 16px var(--primary),
                 0 0 32px var(--primary);
    opacity: 1 !important;
}

/* contents */
.mobile-title {
    display: none;
    margin-bottom: 2rem;
    font-family: 'Neuropol';
    font-size: 2rem;
    text-shadow: 0 0 8px var(--primary);
}
.contents {
    position: relative;
    height: calc(100vh - var(--navbar-height));
    min-height: 450px;
    /* margin: auto; */
    overflow: hidden;
    scroll-behavior: smooth;
    backdrop-filter: blur(12px) brightness(40%);
    box-shadow: inset 0 0 4px var(--primary),
    0 0 4px var(--primary);
}
.content {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: .25s;
    /* background: linear-gradient(45deg, transparent, var(--clr0a), transparent); */
    /* border-width: -3px;
    border-style: solid;
    border-image: linear-gradient(0deg, transparent, var(--clr0a), transparent) 3 25%;
    border-radius: 32px; */
}
/* .content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 5%;
    height: 75%;
    border-top: 10px solid var(--primary);
    border-left: 10px solid var(--primary);
}
.content::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 5%;
    height: 75%;
    border-right: 10px solid var(--primary);
    border-bottom: 10px solid var(--primary);
} */

/* page1 */
.wake-up {
    min-height: 2rem;
    margin-top: 1rem;
    font-family: 'Courier';
    font-size: 1.4rem;
    /* filter: blur(1px); */
    text-shadow: 0 0 2px var(--tertiary),
    0 0 4px var(--primary),
    0 0 8px var(--primary);
}
.appears {
    animation: appears 1s 1s forwards;
}
.appears-from-top {
    animation: appears-from-top 1s 1s forwards;
}
.fade-out {
    animation: fade-out 3s forwards;
}
.home-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    font-family:'Neuropol';
    opacity: 0;
}
.home-about h1,
.home-about h2 {
    text-align: center;
    text-shadow: 0 0 8px var(--primary);
}
.home-about h1::before,
.home-about h2::before,
.home-about h1::after,
.home-about h2::after {
    --glitch: 10px;
    position: absolute;
    content: attr(text);
}
.home-about h1::before {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    animation: glitch-top 4s linear infinite;
}
.home-about h2::before {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    animation: glitch-top 4.5s linear infinite;
}
.home-about h2::before,
.home-about h2::after {
    --glitch: 6px;
    animation-delay: -2s !important;
}
.home-about h1::after {
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    animation: glitch-bottom 4s linear infinite;
}
.home-about h2::after {
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    animation: glitch-bottom 4.5s linear infinite;
}
.home-about h1 {
    font-size: 7.5rem;
    letter-spacing: .2rem;
    line-height: 4.8rem;
    animation: glitch 4s linear infinite;
}
.home-about h2 {
    font-size: 3rem;
    letter-spacing: .1rem;
    animation: glitch 4.5s linear infinite;
    animation-delay: -2s;
}
@keyframes glitch {
    0% {
        transform: translate(-4px, 0) skew(0deg);
    }
    1% {
        transform: translate(4px, 0) skew(10deg) scaleY(1.2);
    }
    2% {
        transform: translate(0, 0) skew(0deg);
    }
}
@keyframes glitch-top {
    0% {
        transform: translate(-2px, -2px) skew(5deg);
    }
    1% {
        transform: translate(calc(var(--glitch) * -1), calc(var(--glitch) * -1)) skew(15deg);
    }
    2% {
        transform: translate(0, 0) skew(0deg);
    }
}
@keyframes glitch-bottom {
    2% {
        transform: translate(2px, 2px) skew(5deg);
    }
    3% {
        transform: translate(var(--glitch), calc(var(--glitch) - 4px)) skew(15deg);
    }
    4% {
        transform: translate(0, 0) skew(0deg);
    }
}
.home-about-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}
.home-about-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.home-about-links a div {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-size: contain;
    transition: .25s;
}
.home-about-links a #github {
    background-image: url(../images/logos/github.png);
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 16px var(--primary));
}
.home-about-links a #github:hover {
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 16px var(--primary)) brightness(3);
}
.home-about-links a #linkedin {
    transform: scale(.78);
    background-image: url(../images/logos/linkedin.png);
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 16px var(--primary));
}
.home-about-links a #linkedin:hover {
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 16px var(--primary)) brightness(3);
}
.home-about p  {
    /* font-size: 1rem; */
    letter-spacing: .1rem;
    text-shadow: 0 0 8px var(--primary);
}
@keyframes appears {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes appears-from-top {
    0% {
        top: -var(--navbar-height);
    }
    100% {
        top: 0;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* page2 */
.about-desc {
    margin-top: 1.6rem;
    gap: 2rem;
}
.about-desc p {
    font-family: 'Neuropol';
    letter-spacing: .1rem;
    text-shadow: 0 0 8px var(--primary);
}
/* .about-technos {
    flex-grow: 1;
} */
.card {
    /* width: 500px; */
    /* height: 500px; */
    padding: 2rem;
    /* box-shadow: inset 0 0 4px var(--primary),
                inset 0 0 32px var(--primary),
                0 0 8px var(--primary); */
}
.technos h2 {
    font-family: 'Matrix';
    font-size: 3rem;
    text-shadow: 0 0 2px var(--primary),
    0 0 32px var(--primary);
    
}
.stack-icons {
    margin-top: 1rem;
    gap: 4rem;
}

.stack-icons span:nth-child(1) {
    width: 99px;
    height: 99px;
    background-image: url(../images/logos/angular.png);
    background-size: contain;
    filter: hue-rotate(180deg) drop-shadow(0 0 16px var(--primary));
}
.stack-icons span:nth-child(2) {
    width: 75px;
    height: 75px;
    background-image: url(../images/logos/symfony.png);
    background-size: contain;
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 24px var(--primary));
}
.stack-icons span:nth-child(3) {
    width: 95px;
    height: 95px;
    background-image: url(../images/logos/docker.png);
    background-size: contain;
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 16px var(--primary));
}
.stack-icons span:nth-child(4) {
    width: 85px;
    height: 85px;
    background-image: url(../images/logos/mysql.png);
    background-size: contain;
    filter: invert(.5) sepia(1) hue-rotate(70deg) saturate(4) drop-shadow(0 0 8px var(--primary));
}
/* diaporama */
.projects {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.projects-markers {
    width: auto;
    height: auto;
    padding-bottom: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}
.projects-markers button {
    width: 19px;
    height: 19px;
    background: none;
    box-shadow: inset 0 0 2px var(--clr),
                inset 0 0 8px var(--clr),
                inset 0 0 12px var(--clr),
                0 0 4px var(--clr);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
}
.projects-markers button:hover {
    background: var(--clr);
    box-shadow: 0 0 8px var(--clr),
    0 0 16px var(--clr);
}
.projects-diaporama {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Neuropol';
    font-size: 1.2rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border-radius: 15px;
}
.project {
    position: absolute;
    float: left;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.project .left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.project-img {
    position: relative;
    bottom: 5px;
    width: 288px;
    height: 162px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.projects-diaporama .project:nth-child(1) .project-img {
    background-image: url(../images/thumbnails/systemd.png);
}
.projects-diaporama .project:nth-child(2) .project-img {
    background-image: url(../images/thumbnails/rc-outreau.png);
}
.projects-diaporama .project:nth-child(3) .project-img {
    background-image: url(../images/thumbnails/boe.png);
}
.projects-diaporama .project:nth-child(4) .project-img {
    background-image: url(../images/thumbnails/astross.png);
}
#previewImg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    backdrop-filter: blur(4px);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 100;
}
.project-links {
    height: 5rem;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 2rem;
}
.project-links div a {
    padding: .5rem 1rem;
    border-radius: .25rem;
    background: var(--primary);
    text-decoration: none;
    letter-spacing: .05rem;
    color: var(--secondary);
    box-shadow: 0 0 8px var(--primary);
    transition: .25s;
}
.project-links div a:hover {
    filter: brightness(2);
}
.project-desc {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
}
.project-desc .project-title {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-desc h2 {
    font-size: 1.6em;
    letter-spacing: .1rem;
}
.project-desc p {
    font-size: 1.2em;
    letter-spacing: .1rem;
}
.project-desc ul {
    height: 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: .1rem;
}

.diaporama-active {
    opacity: 1;
    pointer-events: all;
}
.diaporama-btn-active {
    background: var(--clr) !important;
    box-shadow: 0 0 8px var(--clr),
                0 0 16px var(--clr),
                0 0 32px var(--clr) !important;
    filter: brightness(1.5);
}
/* .page {
    height: 100vh;
}
#page1 {
    height: calc(100vh - var(--navbar-full-height));
} */
.container {
    display: flex;
    width: 1280px;
    margin: auto;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    filter: blur(1px);
    pointer-events: none;
    /* opacity: .75; */
    z-index: -1;
}
#enter {
    display: none;
    margin: 1rem;
    background: none;
    border: none;
    font-family: 'Matrix';
    font-size: 1.4rem;
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
    opacity: 0;
    transition: 1s;
    cursor: pointer;
}
#enter:hover {
    opacity: 1;
    filter: brightness(1.5);
    transition-delay: filter 3s;
}


h1,
h2,
p,
a,
li {
    text-shadow: 0 0 8px var(--primary);
}


/* layout */
.flex {
    display: flex;
}
.block {
    display: block !important;
}
.flex-column {
    flex-direction: column;
}
.center {
    justify-content: center;
    align-items: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-around {
    justify-content: space-around;
}
.justify-between {
    justify-content: space-between;
}
.items-start {
    align-items: flex-start !important;
}
.items-center {
    align-items: center;
}
.margin-0 {
    margin: 0;
}
.margin-auto {
    margin: auto;
}
.width-full {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.fs-4 {
    font-size: 4rem;
}
.fs-8 {
    font-size: 8rem;
}
.primary {
    color: var(--primary);
    mix-blend-mode: color-dodge;
}
.mix-difference {
    mix-blend-mode: difference;
}
.hidden {
    opacity: 0;
    pointer-events: none;
}
.ff-matrix {
    font-family: 'Matrix';
}
.ff-neuropol {
    font-family: 'Neuropol';
}
.text-center {
    text-align: center;
}



@media screen and (max-width: 900px) {
    #headerNav {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --navbar-height: 40px;
    }
    * {
        font-size: .9rem;
    }
    body {
        overflow-y: scroll;
    }
    #cursor {
        display: none;
    }
    canvas {
        position: fixed;
        top: 0;
        left: 0;
    }
    main {
        height: 100%;
        
        top: var(--navbar-height);
        /* overflow-y: scroll;
        overflow: hidden !important; */
        pointer-events: all;
        padding: 1rem;
        margin: 0;
        margin-bottom: 80px;
    }
    .bg {
        background-size: auto 100%;
        background-position: center center;
    }
    #contentIndex {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0 8px;
        justify-content: flex-start !important;
        background: rgba(0, 50, 0, .75);
    }
    .mode {
        position: fixed;
        bottom: 35px;
        right: -50px;
        transform: scale(.7) rotate(90deg);
        z-index: 100;
    }
    #headerNav {
        display: none;
    }
    #mobileNav {
        display: flex;
        opacity: 1;
        pointer-events: all;
    }
    .mobile-title {
        display: block;
    }
    .contents {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: auto !important;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        margin: 0;
    }
    .content {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 8rem !important;
        /* height: calc(50% - 0px) !important; */
        /* height: fit-content !important; */
        padding: 25px 15px;
        /* padding-top: 2rem !important; */
        backdrop-filter: blur(12px) brightness(75%);
        box-shadow: inset 0 0 4px var(--primary), 0 0 4px var(--primary);
        border: none;
        background: none;
    }
    .content::before {
        display: none;
    }
    .content::after {
        left: calc(50% - 40px);
        width: 80px;
        height: 5px;
        border-radius: 0;
        border: none;
        background: var(--clr0);
    }
    .content-desc {
        font-size: .8em;
    }
    .container {
        width: 100% !important;
        padding: 0;
    }
    /* .home-about-title {
        padding-top: 1rem;
    } */
    .home-about-title h1 {
        font-size: 3.4rem;
        letter-spacing: .2rem;
    }
    .home-about-title h2 {
        font-size: 2rem !important;
        letter-spacing: .5rem;
    }
    .title {
        margin-left: 0;
    }
    .title section h1 {
        font-size: 2em;
    }
    .title .about {
        font-size: .9em;
    }
    .technos {
        width: 100% !important;
        padding: 0 !important;
        margin-top: 4rem;
    }
    .stack-icons {
        padding: 0;
        margin: 0;
        margin-top: 1rem;
        gap: 2rem;
    }
    /* .stack-icons span {
        transform: scale(.4)
    }; */
    .stack-icons span:nth-child(1) {
        width: 59px;
        height: 59px;
    }
    .stack-icons span:nth-child(2) {
        width: 39px;
        height: 39px;
    }
    .stack-icons span:nth-child(3) {
        width: 55px;
        height: 55px;
    }
    .stack-icons span:nth-child(4) {
        width: 45px;
        height: 45px;
    }
    .skills {
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 0 4px #777;
    }
    .skills .comp {
        padding: 0;
        gap: 25px;
    }
    .skills li {
        font-size: .8em;
    }
    .skills .languages {
        gap: 0px;
        transform: scale(1);
    }
    .skills .techno {
        width: 35px;
        height: 35px;
        background-size: cover;
    }
    .skills .techno:nth-child(4) {
        width: 44px;
    }
    .skills .techno:nth-child(5) {
        width: 46px;
    }
    #previewImg {
        width: 100%;
        background-size: 100% auto;
    }
    .projects {
        height: fit-content;
        display: flex;
    }
    .projects-diaporama {
        width: 100%;
        min-height: 500px;
        /* height: fit-content; */
        justify-content: flex-start;
        align-items: flex-start;
        /* box-shadow: 0 0 4px #777; */
        border-radius: 0;
        gap: 0;
        padding-top: 25px;
    }
    .project {
        width: 100%;
        height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 5px;
    }
    .project .left {
        width: 100%;
        height: auto;
        align-items: center;
        gap: 0;
        /* order: 1; */
    }
    .project-img {
        width: 100%;
        bottom: 0;
        margin: 0;
    }
    .project-desc {
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: flex-start;
        padding:  5px;
        order: 0;
    }
    .project-desc h2 {
        font-size: 1.2em;
    }
    .project-desc p {
        font-size: .8em;
    }
    .project-desc li {
        font-size: .95em;
    }
    .project-links {
        width: 100%;
        margin-top: 1.6rem;
        margin-bottom: 1rem;
        padding: 10px 0;
    }
    .project-links div {
        width: 100%;
        padding: 0 5px;
        justify-content: flex-start;
    }
    .project-links div a {
        font-size: 1em;
    }
    .form-container form > * {
        font-size: .8em;
    }
    .h-100 {
        height: auto !important;
    }
}