
* {
    font-family: 'Lato', sans-serif;
     padding: 0;
     margin: 0;
     box-sizing: border-box;
}


h1,h2,h3,h4,h5,h6, span{
    color: #242424;
    text-align: center;
    line-height: 1.25;

}
html{
    scroll-behavior: smooth;
}
h1{
    font-size: 36px;

}

p {
    line-height: 1.5;
    font-size: 16px;

}
a{
    text-decoration: none;
    position: relative;
    transition: opacity 300ms ease;

}
i:hover{
    opacity:0.7;
}
.link__hover-effect:after{
    content: "";
    position: absolute;
    height: 3px;
    background-color: black;
    width: 0%;
    bottom: -3px;
    right: 0;
    transition: 300ms ease;
}


.link__hover-effect:hover:after{
    width: 100%;
    left: 0;
}


li{
    list-style-type: none ;
}
.link_hover-effect--white:hover:after{
    background-color: white;
}
.link__hover-effect--black:hover:after{
    background-color: #242424;
}
.flex{
    display: flex;

}
.flex-1{
    flex: 1;

}
.row{
    width: 100%;
    max-width: 800px ;
    margin:0 auto;

}

.section__title{
    margin-bottom: 20px;
}
.container {
    padding: 50px 0;
}
.text--purple{
    color: #6030b1;

}
section::nth-child(even){
    background-color: #f8f8f8;
}
/* NAVIGATION BAR */


.nav__link--list {
    display: flex;
}
nav{
    height:100px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;

}




.nav__link--anchor{
    margin: 0 12px;
    color: #242424;
    text-decoration: none;
    font-weight: 700;

}

.nav__link--anchor-primary {
    background-color: #6030b1;
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    transition: all 300ms ease;



}

.nav__link--anchor-primary:hover{
    background-color: #5d3eff;

}


.personal_logo{

font-size: 24px;
color: #6030b1;
margin: 0 12px;
font-weight: bold;

}


/* About me */


.about-me__info{
    display: flex;
    flex-direction: column;
}


#about-me {
    min-height: 100wh;
    display: flex;
    flex-direction: column;

}

.about-me__info--container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin:0 auto;
    text-align: center;
}

.about-me__picture--mask{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,1);
    margin-bottom: 28px;
    animation: animate-profile-picture 800ms 200ms backwards;

}
@keyframes animate-profile-picture{
    0% {
        transform: scale(0);

    }
    80%{
        transform: scale(1.1);

    }
    100%{
        transform: scale(1);
    }
}

.about-me__picture{
    width: 100%;

    transform: scale(1.5);
    padding-top: 8px;
}

.about-me__info--title{
    margin-bottom: 16px;
    animation: fade-up 650ms 400ms backwards;
}
.about-me__info--para{
    font-size: 20px;
    margin-bottom: 20;
}

.about-me__link {
    font-size: 20px;
    color: #242424;
  
    padding: 0 16px;

}

.about-me__links{
    animation: fade-up 650ms 800ms backwards;
}

@keyframes fade-up{
    0%{
        opacity: 0;
        transform: translateY(40px);

    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.about-me__img--container{
    flex: 1;
    display: flex;
    align-items: center;
}

.about-me__img{
    
    width: 100%;

}
@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.wave-animation{
    display: inline-block;
    animation: animate-wave 500ms infinite ease-in-out;
}

@keyframes animate-wave { 
    0%{
        transform: rotate(0);
    }
    50%{
        transform: rotate(30deg);
    }
    100%{
        transform: rotate(0);
    }
}
/* Tech - Stack */


.language__img{
    width: 100%;
    max-width: 500px;
    
    
}

.language{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.language__img--wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 16px;
}


.language__list{
   display: flex;
    width: 100%;
    flex-wrap: wrap; 

}



.language__name {
    position: absolute;
    bottom: 0;
    transform: scale(0);
    transition: all 300ms;
    font-size: 20px;

}





/* FOOTER */

footer{
background-color: #242424;

}


.footer__row{
    padding: 8% 0;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.footer__social--list{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 28px;
    max-width: 500px;

}
.footer__logo--img{
    width: 150px;
    height: 100px;
}

.footer__social--link,
.footer__copyright{
 color: #ffff
}

.footer__logo--popper{
    color: #ffff;
    position: absolute;
    right: 0;
    top: 30px;
    font-weight: 700;
    opacity: 0;
    transition: all 300ms ease;

}
.footer__anchor{
    margin-bottom: 20px;
    position: relative;
}

.footer__anchor:hover .footer__logo--popper {
opacity: 1;
transform: translate(60px);
}

@media (max-width: 768px){
    nav{
        height: 68px;
    }

    h1{
        font-size: 28px;
    }

    .about-me__info--para{
        font-size: 18px;
    }
    .language{
        width: calc(100% / 3);
    }
}

@media (max-width: 400px){
    .nav__link:not(:last-child){
        display: none;
    }

}

.project__img{
    width: 100%;
    transition: all 500ms ease;
}
.project__wrapper{
    display: flex;
    box-shadow: 0 20px 80 px rgba(0, 0, 0 , 0.45);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.project__wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #1c1d25;
    opacity: 0;
    transition: opacity 450ms ease;
    z-index: 2;
}

.project:hover .project_wrapper:before{
    opacity: 0.7;

}

.project:hover .project__img{
    transform: scale(1.07);
    filter: blur(5px);
}

.project__list{
    padding-top: 40px;
}

.project__description{
    position: absolute;
   
}
.project__description--title{
    font-size: 40px;
}
.project__description--title,
.project__description--sub-title
.project__description--para
.project__description--link{
    text-align: left;
    color: #ffff

}