@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Rancho&family=Water+Brush&display=swap');
*{
    font-family: 'Lato', 'sans-serif';
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

main{
    padding: 2px 2px;
}

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

h1{
    font-size: 36px;
}

.link{
    text-decoration: none;
}

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

li{
    list-style-type: none;
}

.flex-1{
    flex:1;
}

.flex{
    display: flex;
}

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

/* NAVIGATION BAR */

nav {
    height: 100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

#nav-wrapper{
    background-color: rgb(237, 240, 243);
}

.nav__link--list{
    display: flex;
}

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

.nav__link--anchor-primary{
    background-color: #202eac;
    padding: 8px 20px;
    margin-right: 25px;
    border-radius: 50px;
    color: white;
    transition: all 150ms ease;
}

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

}

.personal__logo{
    text-decoration: none;
}

.personal__logo{
    font-size: 24px;
    color: #01020e;
    margin: 0 30px;
    font-weight: bold;
}

/* ABOUT ME */

#nav-wrapper{
    display: flex;
    flex-direction: column;
}


.about-me__info--container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 10px;
 }

.about-me__picture--mask{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden
}

.about-me__picture{
    width: 100%
}

.about-me__info--para{
    font-size: 19px;
    margin-bottom: 28px;
}

.about-me__info--title{
    margin-bottom: 16px;
}

.about-me__link{
    font-size: 20px;
    color: black;
    text-decoration: none;
    padding: 0 16px;
    transition: all 100ms ease
}

.link__hover-effect{
    transition: all 100ms ease
}
.link__hover-effect:hover{
    color:rgb(73, 67, 67);
}

.heading{
    padding: 20px
}

.skills_section{
    width: 100%;
    height: 100%;
    margin: 20px 20px;
    padding: 5px 6%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative
    
}
.skills_head{
    font-size: 19px;
    width: 100%;
    margin-bottom: 100px;
    display: grid;
    place-items: center;
    text-align: center;
}
.skills_head h2{
    font-size: 30px;
    margin-bottom: -5px;
}

.skills_head p{
    font-size: 19px;
    
}

.skills_main{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
    grid-column-gap: 50px;
}
.skills_main .skill_bar .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0 10px;
}
.skill_bar .info p:nth-child(2){
    font-weight: 500;
}
.skill_bar .bar{
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.144);
    border-radius: 25px;
    margin-top: 5px;
    position: relative;
}
.skill_bar .bar span{
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: #e74d06;
    border-radius: 25px;
}
.skill_bar .bar .python{
    width: 90%;
    animation: python 2s;
}
@keyframes python {
    0%{
        width: 0%;
    }100%{
        width: 90%;
    }
}
.skill_bar .bar .java{
    width: 90%;
    animation: java 2s;
}
@keyframes java {
    0%{
        width: 0%;
    }100%{
        width: 90%;
    }
}
.skill_bar .bar .javascript{
    width: 90%;
    animation: javascript 2s;
}
@keyframes javascript {
    0%{
        width: 0%;
    }100%{
        width: 90%;
    }
}
.skill_bar .bar .htcs{
    width: 80%;
    animation: htcs 2s;
}
@keyframes htcs {
    0%{
        width: 0%;
    }100%{
        width: 80%;
    }
}
.skill_bar .bar .react{
    width: 40%;
    animation: react 2s;
}
@keyframes react {
    0%{
        width: 0%;
    }100%{
        width: 40%;
    }
}
.skill_bar .bar .node{
    width: 70%;
    animation: node 2s;
}
@keyframes node {
    0%{
        width: 0%;
    }100%{
        width: 70%;
    }
}
.skill_bar .bar .cplusplus{
    width: 70%;
    animation: cplusplus 2s;
}
@keyframes cplusplus {
    0%{
        width: 0%;
    }100%{
        width: 70%;
    }
}
.skill_bar .bar .sql{
    width: 60%;
    animation: sql 2s;
}
@keyframes sql {
    0%{
        width: 0%;
    }100%{
        width: 60%;
    }
}

.skill_bar .bar .matlab{
    width: 40%;
    animation: matlab 2s;
}
@keyframes matlab {
    0%{
        width: 0%;
    }100%{
        width: 40%;
    }
}


.skill_bar .bar .mongo{
    width: 40%;
    animation: mongo 2s;
}
@keyframes mongo {
    0%{
        width: 0%;
    }100%{
        width: 40%;
    }
}

.skill_bar .bar .csharp{
    width: 60%;
    animation: csharp 2s;
}
@keyframes csharp {
    0%{
        width: 0%;
    }100%{
        width: 60%;
    }
}


.skill_bar .bar .ts{
    width: 80%;
    animation: ts 2s;
}
@keyframes ts {
    0%{
        width: 0%;
    }100%{
        width: 80%;
    }
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .spoiler {
    filter: blur(5px);
    transition: all 300ms ease;
  }

  .spoiler:hover {
    filter: blur(0px);
  }
  


