@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --darker-purple: rgb(41, 30, 71);
    --navy-shadow: rgba(2, 12, 27, 0.7);
    --text-purple: rgb(157, 72, 255);
    --background: #242629;
    --background-dark: #16161a;
    --card-background: #16161a;
    --card-background-light: #242629;
    --headline: #fffffe;
    --sub-headline: #94a1b2;
    --card-heading: #fffffe;
    --card-paragraph: #94a1b2;
    --stroke: #010101;
    --main: #fffffe;
    --highlight: #7f5af0;
    --secondary: #72757e;
    --tertiary: #2cb67d;
    --border-radius: 0.22em;
}

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
}

::selection {
    background: var(--main);
    color: var(--highlight);
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #ffb7b7;
    /* Gecko Browsers */
}

html {
    scroll-behavior: smooth;
}

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

.svg-icon,
.svg-icon-custom {
    width: 2em;
    height: 2em;
    pointer-events: none;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    fill: var(--main);
}

.svg-icon circle {
    stroke: var(--main);
    stroke-width: 1;
}

#scrollToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--highlight);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 8px 10px;
    z-index: 1000;
    cursor: pointer;
}

/* Styles pour la boîte de dialogue modale */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-dark);
    padding: 20px 35px;
    border-radius: 5px;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Styles pour les boutons dans la boîte de dialogue */
button {
    background-color: var(--highlight);
    color: var(--main);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

/* cursor */
/* 
.cursor::after {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background: linear-gradient(230.46deg, #5F5FF3, var(--purple) 90%, var(--dark-purple));
    border-radius: 50%;
    opacity: 1;
    top: 5px;
    left: 5px;
    transition: all 0.2s ease-out;
}

.cursor {
    z-index: 1000;
    pointer-events: none;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    transition: all 0.2s ease-out;
}

.cursorHover {
    transform: scale(1.2);
}

.cursorHover::After {
    transform: scale(2.3);
    top: 9px;
    left: 9px;
    opacity: 0.3;

}


@keyframes cursorAnim {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.9);
    }
}

@keyframes cursorHover {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.5);
    }
}

@keyframes cursorHover2 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.5);
        opacity: .5;
    }
} */



body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: var(--main);
}

/* links <a> custom */

.c-link {
    color: var(--highlight);
}

/* Fader */

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: rgb(32, 32, 32);
    animation: all 0.3s ease-in-out;
}

@keyframes fade-out {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */
/* hamburger */

.menu-btn {
    z-index: 100;
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    margin: 0 auto;
    display: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    pointer-events: all;
    transition: all .5s ease-in-out;
    transition: left .3s ease-out;
}

.menu-btn-onscroll {
    left: 75%;
}

.menu-btn__burger {
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-16px);
}

.menu-btn__burger::after {
    transform: translateY(16px);
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
    transform: translateX(-25px);
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(15px, -15px);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(15px, 15px);
}

/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */
/* navbar */

header {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.5vh 9vw 3.5vh 9vw;
    z-index: 1000;
    transition: all 0.3s ease-out;
}

.header-onscroll {
    background-color: rgba(22, 22, 26, .9);
    padding: 1.5vh 17vh 1.5vh 17vh;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.header-onscroll-mobile {

    backdrop-filter: none;
    background-color: transparent;
}

.navbar {
    width: 100%;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo-txt {
    font-size: 26px;
    line-height: 0;
}

.navbar .logo-txt::after {
    content: '.';
    font-size: 70px;
    color: var(--highlight);
}

.navbar__links a {
    font-size: 14px;
    position: relative;
    pointer-events: all;
    color: rgb(231, 231, 231);
    font-weight: 500;
    letter-spacing: 6px;
    text-decoration: none;
    padding: 0 0 3px 6px;
    background: linear-gradient(90deg, var(--purple), var(--purple)) no-repeat right bottom / 0 var(--white);
    transition: background-size 350ms;
    --white: 4%;
}


/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */
/* HOME */

.main-center {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.main-center h1 {
    z-index: 1;
    margin: 0;
    font-size: 110px;
    text-align: center;
}

h4.section-title-h4 {
    font-size: 1.7em;
    font-weight: 500;

    padding: 1em 0 1em 0;
}

.main-center .scroll {
    gap: 12px;
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    left: 50%;
    right: 50%;
    z-index: 100;
}

.main-center .scroll span {
    font-size: 12px;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.main-center .scroll i {
    animation: floating infinite alternate-reverse 1.5s ease-out;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }

}

.main-center h1::after {
    content: '.';
    color: var(--highlight);
}

.main-center-background {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    width: 110%;
    height: 110%;
    background-position: center;
    background-size: cover;
}

#activities.section-title {
    padding-top: 0;
}

.main-center-index {
    background-image: url(../img/background.jpg);
}

.main-center-resume {
    background-image: url(../img/Background4.jpg);
}

.main-center-works {
    background-image: url(../img/Background3.jpg);
}

.main-center-contact {
    background-image: url(../img/Background2.jpg);
}


.main-center p {
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 21px;
    color: var(--main);
    opacity: 85%;
    padding: 0 15vw;
}

.btn-resume {
    pointer-events: all;
    cursor: pointer;
    z-index: 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0.6em 1.3em;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 400;
    color: var(--main);
    background-color: var(--highlight);
    text-align: center;
    transition: all 0.2s;
}

.btn-resume:hover {
    color: var(--highlight);
    background-color: var(--main);
}

.links {
    padding-left: 25px;
    padding-bottom: 15px;
    position: fixed;
    width: fit-content;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.links::after {
    content: 'socials';
    writing-mode: tb-rl;
    transform: rotateZ(180deg);
    margin-left: -2px;
    letter-spacing: 2px;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.links:hover {
    color: var(--highlight);
}

.links a {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
}

.links a:nth-child(1) {

    background-image: url(../img/gmail.png);
}

.links a:nth-child(2) {

    background-image: url(../img/linkedin.png);
}

.links a:nth-child(3) {
    background-image: url(../img/github.png);
}

.links a {
    transition: all .15s ease-out;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.links a:hover {
    transform: translateY(-2px);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */
/* ABOUTME */

.margin-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-me-first {
    display: flex;
    gap: 10%;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

/* <iframe> video youtube en format 16:9 */

.video-container {
    display: flex;
    flex-direction: column;
}

.video-container h3 {
    margin: 0;
}

.video-container iframe {
    width: 1000px;
    height: 562.5px;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cursus {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2.5em;
}

.cursus .vertical-year:first-child {
    padding-right: 0.5em;
}

.vertical-year {
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.cursus-arrow {
    color: var(--highlight);
}

.vertical-year.duration {
    font-size: 0.8em;
}

.vertical-separator {
    padding: 0 0.1em;
    background-color: var(--highlight);
    margin: 0 1em;
}

.left p {
    font-size: 18px;
    line-height: 28px;
}

.about-me-container {
    padding-bottom: 15vh;
    background-color: var(--background);
}

.about-me-second {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10vh 5vw 0 5vw;
    display: flex;
    justify-content: center;
    gap: 1.5%;
    width: 100%;
    align-items: top;
}

.about-me-card {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    justify-content: top;
    gap: 15px;
    width: 500px;
    min-height: 400px;
    border-radius: var(--border-radius);
    background-color: var(--card-background);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: white;
    transition: all 0.2s ease-in-out;
}

.about-me-card .header {
    display: flex;
    gap: 6%;
    align-items: center;
}

.about-me-card .header span {
    font-size: 30px;
    font-weight: 600;
}

.about-me-card .header img {
    width: 85px;
}

.about-me-card .description {
    font-size: 24px;
    line-height: 35px;
    color: var(--card-paragraph);
}

.about-me-card:hover {
    transform: translateY(-0.5em);
}

.about-me-cv {
    gap: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15vh 0;
}

.about-me-cv span {
    font-size: 25px;
    font-weight: 500;
}

.about-me-cv a {
    font-size: 25px;
    font-weight: 500;
}

.about-me-cv-btns {
    display: flex;
    gap: 1em;
}

.exp p {
    font-size: 18px;
    line-height: 28px;
}

.meeting {
    width: 100%;
    background-color: var(--background-dark);
}

/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
/* WORK */
.main-work-container {
    width: 100%;
    background-color: var(--background-dark);
    color: var(--white);
}

.main-work {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding-top: 4em;
}

.separator {
    width: 25%;
    height: 2px;
    background-color: var(--highlight);
    margin: 3.5em auto;
}

.article-work {
    display: flex;
    justify-content: center;
}

.article-work-img {
    display: flex;
    align-items: center;
    width: 50%;
    transform: translatex(2em);
}

.article-work-img a {
    display: flex;
    height: fit-content;
    align-items: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgb(84, 20, 143);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.article-work-img img {
    pointer-events: none;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(100%) contrast(1) brightness(90%);
    -webkit-filter: grayscale(100%) contrast(1) brightness(90%);
    -moz-filter: grayscale(100%) contrast(1) brightness(90%);
    transition: all 0.2s ease-in-out;
}

.article-work-img a:hover>img {
    filter: none;
    opacity: 1;
}

.article-work-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    text-align: right;
    transform: translatex(-2em);
}

.article-work-text h4 {
    line-height: 2.1em;
    font-size: 1.3em;
    font-weight: 500;
    color: var(--highlight);
}

.article-work-text h2 {
    font-size: 2.6em;
    font-weight: 500;
    line-height: 45px;
    padding-bottom: 0.4em;
    transition: all 0.3s ease-in-out;
}

.article-work-text h2:hover {
    color: var(--highlight);
}

.article-work-text p {
    font-size: 1.15em;
    font-weight: 300;
    background-color: var(--card-background-light);
    padding: 0.9em 1.8em;
    line-height: 1.6em;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.softwareused {
    display: flex;
    flex-wrap: wrap;
    opacity: 0.7;
    line-height: 3em;
    font-weight: 200;
    list-style-type: none;
    justify-content: right;
    gap: 5%;
}

.work-links {
    display: flex;
    justify-content: right;
    gap: 2%;
    padding: 15px 0;
}

.work-links a {
    display: flex;
    justify-content: right;
}

/* Reverse */

article.reverse {
    flex-direction: row-reverse;
}

article.reverse .article-work-text {
    text-align: left;
}

article.reverse .softwareused,
article.reverse .work-links {
    justify-content: left;
}

article.reverse .article-work-text {
    transform: translateX(2em);
}

article.reverse .article-work-img {
    transform: translateX(-2em);
}

/* other work */

.other-work {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
    padding-bottom: 8em;
}

.section-title {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 3em;
    font-weight: 600;
    padding: 3em 0 2em 0;
}

h3.section-title {
    font-size: 2.3em;
    font-weight: 500;

    padding: 1em 0 1em 0;
}

.section-title::after {
    content: '';
    width: 17%;
    height: 2px;
    background-color: var(--highlight);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.work-card {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-height: 375px;
    border-radius: var(--border-radius);
    background-color: var(--darker-purple);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: white;
    padding: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.work-card:hover {
    transform: translateY(-0.5em);
}

.card-img {

    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    width: 100%;
    max-height: 115px;
    background-image: url(../img/3.jpg);
}

.card-img h4 {
    font-size: 0.3em;
    font-size: 1.3em;
    font-weight: 500;
    color: var(--white);
    padding: 25px 12px 2px 12px;
}

.card-description {
    padding: 12px;
    padding-top: 5px;
}

.card-description p {
    letter-spacing: 0.5px;
}

.card-description h2 {
    font-size: 1.6em;
    font-weight: 500;
    color: var(--text-purple);
}

.card-description .softwareused {
    flex-wrap: nowrap;
    justify-content: left;
}

.work-card .work-links {
    position: absolute;
    bottom: 5%;
    justify-content: left;
    gap: 25%;
    padding: 0;
}

/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */
/* International */

.international-container {
    padding-bottom: 15vh;
    background-color: var(--background);
}

.civic-container {
    padding-bottom: 15vh;
    background-color: var(--background-dark);
}

/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */
/* CONTACT */

.contact {
    position: relative;
    height: 100vh;
    background: url(../img/background4.jpg);
    background-position: 250px;
    background-size: cover;
}

.contact-title {
    padding: 2em 0 1em 0;
}

.contact .left {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background-color: var(--background);
    width: 50%;
    height: 100vh;
}

.contact-container {
    position: relative;
    display: flex;
    gap: 15%;
    justify-content: center;
}

.contact-form {
    width: 550px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.fake-submit {
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    background-color: var(--background-dark);
    border: 2px solid var(--background-dark);
    border-radius: var(--border-radius);
    color: var(--main);
    margin-top: 20vh;
    padding: 16px;
    box-sizing: border-box;
    transition: .3s;
}

.fake-submit:hover {
    border-color: var(--highlight);
    box-shadow: 0 0 6px 0 var(--highlight);
}

/* .contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 16px;
    background-color: var(--background-dark);
    border: 2px solid var(--background-dark);
    border-radius: var(--border-radius);
    color: var(--main);
    outline: none;
    padding: 16px;
    box-sizing: border-box;
    transition: .3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--main);
    opacity: .3;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    opacity: .6;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form .fake-submit:hover {
    border-color: var(--highlight);
    box-shadow: 0 0 6px 0 var(--highlight);
}

.contact-form textarea {
    min-height: 30vh;
    max-height: 400px;
    resize: vertical;
} */


/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 20vh;
    background: var(--background-dark);
}










/* Adaptation portable */

@media screen and (max-width: 1300px) {
    header {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

@media screen and (max-width : 1200px) {

    .links-wrapper {
        display: none;
    }

    .navbar-header {
        height: 100%;
    }

    header {
        position: fixed;
    }

    .navbar {
        position: absolute;
        padding: 125px 0 75px 0;
        top: 0;
        left: 0;
        flex-direction: column;
        height: 100vh;
        align-items: center;
        transform: translatey(-100%);
        background-color: rgba(0, 0, 0, 0.514);
        transition: all 0.5s ease-in-out;
        backdrop-filter: blur(5px);
    }

    .navbar a {
        font-size: 1.7em;
    }

    .navbar .logo-txt {
        font-size: 1.8em;
    }

    .navbar-mobile {
        transform: translatey(0%);

    }

    .menu-btn {
        display: flex;
    }

    .main-center h1 {
        font-size: 85px;
        line-height: 85px;
        margin-bottom: 2.5vh;
    }

    .main-center p {
        padding: 0 10vw;
        font-size: 20px;
    }

    .section-title {
        margin: auto 75px;
    }

    .about-me-first {
        padding-left: 10vw;
        padding-right: 10vw;
        gap: 5%;
    }

    .margin-container.exp {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .about-me-second {
        flex-wrap: wrap;
    }

    .about-me-second .about-me-card {
        margin-bottom: 2%;
    }

    .main-work {
        margin: 0 5vw;
    }

    header {
        background-color: none;
    }
}

@media screen and (max-width : 1000px) {

    .video-container iframe {
        margin: 0 auto;
        width: 85vw;
        height: 48vw;
    }

    .video-container h3 {
        margin: auto 0 auto 10vw;
    }

    .section-title {
        margin: auto 0 auto 10vw;
    }

    #about-me .about-me-first .right img {
        display: none;
    }

    .about-me-first {
        gap: 0;
        flex-direction: column;
    }

    .article-work {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .main-work {
        margin: 0 5vw;
    }

    .article-work-text {
        width: 100%;
        transform: translateX(0);
        text-align: left;
    }

    article.reverse div.article-work-text {
        transform: translate(0);
    }

    .article-work-text .work-links {
        justify-content: left;
    }

    .article-work-img {
        width: 100%;
        transform: translate(0);
    }

    .article-work-img a {
        height: 50px;
    }

    .article-work.reverse {
        flex-direction: column;
    }

    article.reverse .article-work-img {
        transform: translateX(0);
    }

    .article-work .softwareused {
        justify-content: space-between;
    }
}

@media screen and (max-width : 700px) {

    .video-container h3 {
        margin-left: 5vw;
        margin-right: 2vw;
    }

    .main-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-center h1 {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 10vh;
    }

    .main-center p {
        padding: 0 5vw;
    }

    .main-center .scroll span {
        display: none;
    }

    .cursor {
        display: none;
    }

    .about-me-first {
        padding: 0 5vw;
    }

    .margin-container.exp {
        padding: 0 5vw;
    }

    .about-me-second .about-me-card {
        margin-bottom: 5vw;
    }

    .section-title {
        margin-left: 5vw;
        margin-right: 2vw;
        font-size: 2.3em;
    }

    .about-me-card p {
        font-size: 20px;
        line-height: 30px;
    }

    .article-work h2 {
        font-size: 2em;
    }

    .article-work p {
        line-height: 32px;
    }

    .work-grid {
        padding: 0 5vw;
    }

    .contact .left {
        display: none;
    }

    .contact {
        background-position: 0;
        padding: 0 5vw;
    }

    .about-me-cv-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width : 350px) {

    .main-center {
        padding-top: 8vh;
    }

    .main-center h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .main-center p {
        font-size: 18px;
    }

    .menu-btn {
        top: 10px;
    }
}