*{
    margin: 0;
    padding: 0;
    font-family: madeYourself;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    /* color: unset!important; */
}
body{
    overflow-x: hidden;
    /* background-position: fixed; */
    background: url('img/bgImg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    backdrop-filter: blur(5px);
    color: rgb(206, 205, 205);
}

@font-face {
    font-family: neonzone;
    src: url(Fonts/NeonZone-lgYBe.ttf);
}

@font-face {
    font-family: madeYourself;
    src: url(Fonts/MADEYourselfPERSONALUSE-Regular.otf);
}







nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
   overflow: hidden;
}

.logo h2{
    font-family: neonzone;
}

.navContact{
    background: rgb(17,129,227);
    background: linear-gradient(90deg, 30%, rgba(162,67,177,1) 6%, rgba(162,67,177,1) 62%, rgba(24,170,201,1) 100%);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 15px;
}
.navContact a{
    color: white;
}
.navContact::after{
    content: "Mail Me";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(17,129,227);
background: radial-gradient(circle, rgba(17,129,227,1) 0%, rgba(162,67,177,1) 0%, rgba(162,67,177,1) 52%, rgba(24,170,201,1) 100%);
    transition: 1s all ;
}

.navContact:hover.navContact::after{
    transform: translateX(100%);
}

.homeIntro{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    overflow: visible;
    position: relative;
    z-index: 1;
    cursor: default;
}

.homeText{
    mix-blend-mode: color;
    font-size: 8vw;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    overflow: visible;
}

.homeText span{
    font-family: neonzone;
    display: block;
    /* background: -webkit-linear-gradient(90deg, hsla(292, 45%, 50%, 1) 0%, hsla(216, 73%, 54%, 1) 100%); */
    background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
   
}

.homeText::before{
    content: '-';
   
}

.homeText::after{
    content: ' 👑 ';
    font-size: 7vw;
}


.homeIntro::before{
    content: url('img/circle.png');
    position: absolute;
   left: 5%;
   top: 10%;
   /* filter: grayscale(1); */
    z-index: -1;
    opacity: 0.2;
    animation: rotate-anim 50s linear infinite;
}

@keyframes rotate-anim {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}






.homeRole{
    min-height: 100vh;
    font-size: 9vw;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.aboutSection{
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    gap: 30px;
    overflow: hidden;
}
.aboutHeadingContainer{
    overflow: visible;
}
.aboutHeading{
    font-size: 7vw;
    /* text-transform: capitalize; */
    transform: rotate(270deg);
    text-align: center;
    flex: 1;
    overflow: hidden;
    color: #555;
}

.aboutInfoContainer{
    flex: 3;
    overflow: visible;
    padding-right: 20px;
  
}

.aboutImg{
    float: left;
    /* shape-outside: url('img/MEMOJI\ PROFILE.PNG'); */
    margin-top: 30px;
    shape-margin: 4px;
}

.aboutInfoText{
    text-align: left;
    line-height: 40px;
    overflow: visible;
}
.aboutInfoText .span1{
    font-size: 40px;
    color: rgb(210, 210, 210);
}

.aboutInfoText .span2{
    font-size: 30px;
}

.aboutBtn{
    background-color: #555;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 20px;
    position: relative;
}

.aboutBtn a{
    color: white;
}
.aboutBtn::after{
    content: "Mail Me";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #555;
    transition: 1s all ;
}

.aboutBtn:hover.aboutBtn::after{
    transform: translateX(100%);
}
/* .aboutHeading::before{
    content: '-';
    font-weight: lighter;
}

.aboutHeading::after{
    content: '-';
    font-weight: lighter;
} */


.projects{
    /* padding: 50px 50px;
    padding-right: 0; */
    overflow-x: hidden;
    /* padding-top: 10px; */
}

.projectTitleContainer{
    min-height: 100vh;
    position: relative;
   padding: 50px 50px;
   padding-right: 0;
   z-index: 1;
}

.projectImg{
    position: absolute;
    right: 10%;
    z-index: -1;
    filter: grayscale(0.5);
}

.projectTitleContainer::-webkit-scrollbar{
    display: none;
}

.projectTitle{
    font-size: 7vw;
    display: flex;
    align-items: center;
    justify-content: center;
}



.project{
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 50px;
    gap: 100px;
}




.project:nth-child(2n-1){
    flex-direction: row-reverse;
    
}

.phone{
    flex: 1;
    width: 300px;
    height: 600px;
    position: relative;
    z-index: 3;
}

.phone::-webkit-scrollbar{
    display: none;
}

.phoneApp{
    width: 100%;
}



.projectDesc{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.projectHeading{
    font-size: 40px;
    text-transform: uppercase;
    color: #555;
}

.projectDetails{
    color: rgb(207, 207, 207);
    text-align: justify;
    line-height: 30px;
}

.projectBtn{
    background-color: #555;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.projectBtn::after{
    content: "view project";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #555;
    transition: 1s all ;
}

.projectBtn:hover.projectBtn::after{
    transform: translateX(100%);
}

.phoneScreen{
    
    width: 264px;
    height: 567px;
    position: absolute;
    top: 17px;
    left: 18px;
    border-radius: 28px;
    overflow: scroll;
}

.phoneScreen::-webkit-scrollbar{
    display: none;
}

.contactSection{
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    gap: 30px;
    overflow: hidden;
    
}

.contactHeadingContainer{
  
   overflow: visible;
}

.contactHeading{
    font-size: 7vw;
    /* text-transform: capitalize; */
    transform: rotate(270deg);
    text-align: center;
    flex: 1;
    color: #555;
   
}

.contactInfo{
    flex: 3;
   
}

.contactLinks{
    text-decoration: none;
    font-size: 6vw;
    margin-left: 30px;
    color: rgb(206, 205, 205);
    margin-bottom: 30px;
}

.contactLinks:hover{
    color: white;
}
.outro{
    text-align: center;
    padding: 30px;
    color: #555;
}

.outro span{
    font-family: neonzone;
    font-size: 25px;
}

.outro::before{
    content: '-';
    display: inline-block;
   
}

.outro::after{
    content: '-';
    display: inline-block;
}


::-webkit-scrollbar {
    width: 0.6rem;
    height: 0;
    border-radius: 10px;
    position: fixed;
    right: 0;
    top: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #3c3c3c;
}

::-webkit-scrollbar-track {
    background-color: #010101;
}

@media screen and (max-width: 1024px){
    .phone{
        transform: none!important;
    }
    .homeIntro::before{
        top: 20%;
    }

}
@media screen and (max-width: 788px) {
    .project{
        flex-direction: column;
        justify-content: center;
    }
    .project:nth-child(2n-1){
        flex-direction: column;
        
    }
    .contactHeadingContainer{
        transform: none!important;
    }
    .aboutHeadingContainer{
        transform: none!important;
    }
    .homeIntro::after{
        right: 10%;
    }
    .homeText{
        /* transform: translateY(-50%); */
        margin-top: -100%;
    }
   
}