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

/*Html*/
html {
    scroll-behavior: smooth;
}

/*Body*/
body {
    font-family: Helvetica, sans-serif;
    overflow-x: hidden;
    background-color: #0B0B0B;
    color: #fafafa;
    cursor: none;

}

a:-webkit-any-link {
    cursor: none;
}

/*Scrollbar*/

/* width */
::-webkit-scrollbar {
    width: 0px;
}

.clickable {
    cursor: none;
}

.follow {
    position: fixed;
    border-radius: 100%;
    pointer-events: none;
    mix-blend-mode: difference;
}

.one {
    z-index: 6;
    width: 10px;
    height: 10px;
    left: -5px;
    top: -5px;
    background-color: #fafafa;
    transition: height .2s, width .2s, top .2s, left .2s;
}

.two {
    z-index: 5;
    border: solid 3px #bfff07;
    width: 50px;
    height: 50px;
    left: -25px;
    top: -25px;
    transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*After nav*/
.headerElement a {
    display: inline;
    position: relative;
}

.headerElement a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 5px;
    background-color: #bfff07;
    transition: all 0.3s ease-in-out;
}

.headerElement a:hover:after {
    width: 100%;
}

::selection {
    text-decoration: underline;
}

/*Other*/
a {
    text-decoration: none;
    color: #fafafa;
}

/*Header*/
header {
    padding: 0vw 2vw;
}

#menuButton {
    height: 80px;
    width: 80px;
    font-size: 72px;
    position: absolute;
    top: 5vw;
    right: 5vw;
    z-index: 2;
    color: #fafafa;
    transition: color 0.5s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1vh;
    transition: all 0.3s ease;
}

#menuButton.active {
    color: #bfff07;
}

#menuContent {
    position: absolute;
    background-color: #0B0B0B;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    z-index: 1;
    margin-right: -100%;
    transition: all 0.5s ease;
}

#navEffect {
    position: absolute;
    background-color: #bfff07;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    position: fixed;
    z-index: 2;
    margin-right: -70%;
    transition: all 0.5s ease;
}

.italic {
    display: none;
}

#menuContent a {
    color: #fafafa;
    font-size: 10vw;
    text-transform: uppercase;
}

#menuContent.mobile-menu {
    margin-right: 0;
}

#navEffect.active {
    margin-right: 100%;
}

.navButtonElement {
    margin-left: 10%;
    margin-right: 20%;
    padding: 32px 32px 32px 10vw;
}

.top {
    border-top: solid 1px #fafafa;
}

.mid {
    border-top: solid 1px #fafafa;
    border-bottom: solid 1px #fafafa;
}

.bottom {
    border-bottom: solid 1px #fafafa;
}

/*Main*/
main {
    padding: 0vw 5vw;
}

h2 {
    font-size: 12vw;
    padding: 10vw 0vw 0vw 0vw;
}

#selectedWorks h3 {
    font-size: 5vw;
}

/*Home*/
#home {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#home {
    background-image: url(img/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#homeInfos {
    padding-top: 5vw;
    font-family: Helvetica, sans-serif;
    color: #bfff07;
    font-size: 1.5vw;
}

#title {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

h1 {
    font-size: 12vh;
}

#about_cont h2 {
    font-size: 5vw;
    font-weight: 400;
    padding-bottom: 3vw;
}

#about_cont {
    font-size: 4.5vw;

}

/*About*/
#about {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#textAbout {
    display: flex;
    flex-direction: column;
    row-gap: 15vw;
    font-size: 4vw;
    font-family: Helvetica, sans-serif;
}

#textAbout h3 {
    font-size: 5vw;
    padding-bottom: 15vw;
}

.underline {
    /*text-decoration: underline;
    text-decoration-color: #bfff07;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;*/
    color: #bfff07;
    font-family: Helvetica, sans-serif;
}

/*#textAbout .underline::after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #bfff07;
}*/

/*Selected Works*/
#borderWorks {
    height: 1px;
    background-color: #fff;
    margin-bottom: 4vw;
    display: none;
}

#selectedWorks {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#selectedWorksTitle {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    display: none;
}

h2 span {
    color: #bfff07;
    font-family: Helvetica, sans-serif;
    font-size: 14vw;
}

#menu {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    row-gap: 15vw;
}

.work {
    display: flex;
    flex-direction: column;
}

/*Images Works*/
.workImage {
    width: 100%;
    aspect-ratio: 16/9;
}

#w1 .workImage {
    background-image: url(img/covers/cover_josman.webp);
    background-size: cover;
    background-position: center;
}

#w2 .workImage {
    background-image: url(img/covers/cover_walkman.webp);
    background-size: cover;
    background-position: center;
}

#w3 .workImage {
    background-image: url(img/covers/cover_kaintaro.webp);
    background-size: cover;
    background-position: center;
}

#w4 .workImage {
    background-image: url(img/covers/cover_futura.webp);
    background-size: cover;
    background-position: center;
}

#w5 .workImage {
    background-image: url(img/covers/cover_limbo.webp);
    background-size: cover;
    background-position: center;
}

#w6 .workImage {
    background-image: url(img/covers/cover_house.webp);
    background-size: cover;
    background-position: center;
}

#w7 .workImage {
    background-image: url(img/covers/cover_alpha.webp);
    background-size: cover;
    background-position: center;
}

.workPres span {
    color: #bfff07;
    font-size: 4vw;
    font-family: Helvetica, sans-serif;
}

.workPres {
    padding-bottom: 4vw;
}

.workTitleContent {
    padding: 4vw;
    font-size: 3.7vw;
    display: flex;
    justify-content: flex-end;
    font-family: Helvetica, sans-serif;
}

#moreProj {
    font-size: 3.7vw;
    display: flex;
    justify-content: center;
    padding: 10vw 0vw;
}

#moreProj .clickable {
    display: inline;
    position: relative;
}

#moreProj .clickable::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #bfff07;
    transition: all 0.3s ease;
}

#moreProj .clickable:hover:after {
    width: 100%;
}


/*Footer*/
footer {
    padding: 10vw 5vw;
    background-color: #0B0B0B;
    color: #fafafa;
    border-top: solid 1px #fafafa;
    text-transform: uppercase;
}

#phrasesContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#phrasesContainer p {
    font-family: Helvetica, sans-serif;
    font-size: 3.5vw;
}

#contact {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
    flex-wrap: wrap;
    font-size: 3.3vw;
}

#workTogether {
    font-size: 6vw;
    color: #bfff07;
}

/*After Footer*/
footer .clickable {
    display: inline;
    position: relative;
}

footer .clickable::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #bfff07;
    transition: all 0.3s ease;
}

footer .clickable:hover:after {
    width: 100%;
}

#copy {
    background-color: #68BE78;
    color: #fafafa;
    border-radius: 8px;
    position: absolute;
    padding: 24px;
    left: 90%;
    display: none;
}

/*#mail::before {
    content: "Copied to clipboard !";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 3vw;
    top: -5vw;
    background-color: #68BE78;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

@media only screen and (min-width: 550px) {

    /*Header*/

    /*Main*/
    h1 {
        font-size: 20vw;
    }

    #about_cont h2 {
        font-size: 2.5vw;
        font-weight: 400;
        padding-bottom: 3vw;
    }

    #about_cont {
        font-size: 2.5vw;
        padding-left: 20vw;

    }

    /*Footer*/



}

@media only screen and (min-width: 1024px) {

    /*Header*/
    #menuContent a {
        font-size: 4vw;
        text-transform: uppercase;
    }

    .navButtonElement {
        padding: 48px 48px 48px 10vw;
    }

    /*Main*/
    h2 {
        font-size: 4.5vw;
        padding: 8vw 0vw 0.8vw 0vw;
    }

    h2 span {
        font-size: 3.8vw;
    }

    .workPres {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        column-gap: 1vw;
        padding-bottom: 0vw;
    }

    .workImage {
        display: none;
    }

    .workTitle {
        display: none;
    }

    .work {
        padding-bottom: 0vw;
    }

    /*Footer*/
    footer {
        padding: 5vw 5vw;
    }

    #phrasesContainer p {
        font-size: 1.5vw;
    }

    #workTogether {
        font-size: 2.5vw;
    }

    #contact {
        font-size: 1vw;
    }

    /*Home*/
    #title {
        justify-content: center;
        flex-direction: column;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

    #home {
        background-image: url(img/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #about_cont {
        display: flex;
        flex-direction: row;
        padding-left: 40vw;
    }

    #about_cont h2 {
        font-size: 2.5vh;
        padding: 0;
        padding-right: 4vw;
        font-weight: 400;
    }

    #about_cont p {
        font-size: 2.5vh;
    }

    /*#bg_svg_container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100vw;
        position: absolute;
    }

    #bg_svg_container svg {
        height: 80%;

    }*/

    h1 {
        font-size: 32vh;
        transform: rotate(0deg);
        display: flex;
        padding-bottom: 2vw;
    }

    h1 span {
        color: #bfff07;
        font-size: 20vh;
        font-family: Helvetica, sans-serif;
        text-transform: none;
    }

    #homeInfos {
        padding-top: 5vw;
        font-size: 1.5vw;
    }

    /*About*/
    #textAbout h3 {
        font-size: 2.5vw;
        padding-bottom: 6vw;
    }

    #textAbout p {
        font-size: 1.5vw;
    }

    #textAbout {
        display: flex;
        row-gap: 6vw;
        padding: 0 10vw;
        text-align: center;
    }

    /*Selected Works*/

    #borderWorks {
        height: 1px;
        background-color: #fff;
        margin-bottom: 2vw;
    }

    #selectedWorks {
        padding-bottom: 0vw;
    }

    #selectedWorks h3 {
        font-size: 3vw;

    }

    .workPres span {
        font-size: 1.8vw;
    }

    #menu {
        left: 10%;
        top: 20%;
        height: 60%;
        width: 80%;
        row-gap: 0;
    }

    .work {
        position: relative;
        flex: 1;
        display: flex;
        justify-content: center;
        padding: 2.5vw 0;
        /*border-top: solid 1px;*/
        padding-left: 5vw;
    }

    .workPres {
        position: relative;
        display: inline-block;
        top: 50%;
        mix-blend-mode: difference;
        display: flex;
        flex-direction: row;
    }

    .hover-reveal {
        position: absolute;
        height: 320px;
        aspect-ratio: 16/9;
        top: 0;
        left: 0;
        pointer-events: none;
        opacity: 0;
        transform: translate(0, -300px);
        transition: 0.2s ease-out;
    }

    .hover-reveal__inner {
        width: 100%;
        height: 100%;
        position: relative;
        will-change: transform;
        overflow: hidden;
    }

    .hover-reveal__img {
        background-size: cover;
        background-position: 50% 50%;
        transform-origin: 50% 100%;
        width: 100%;
        height: 100%;
        position: relative;
        will-change: transform;
        transform: scale(0.8, 0.8);
        transition: 0.5s transform;
    }

    #moreProj {
        font-size: 1.5vw;
        padding: 4vw 0vw;
    }
}