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

/* Navbar starts */
nav{
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 6vh;
    height: auto;
    width:100%;
    background-color:#20272e;
    color:white;
    z-index: 1;
}

.logo{
    font-weight: bold;
    font-family: 'Kufam', cursive;
    letter-spacing: 3px;
}
.logo p{
    display: inline-block;
}



.nav-links{
    width: 35%;
}

.nav-links a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
}


.nav-links li a:hover{
    color: #ef5455;
}
.burger div{
    width: 25px;
    height:3px;
    background-color: white;
    margin:5px;
    transition: all 0.3s ease;
}
.burger{
    display: none;
    cursor: pointer;
}

/* navbar ends */

/* Home starts */
.Home{
    background-color: #20272e;
    color:white;
    overflow: hidden;
}



.intro{
    border-left: 4px solid  #ef5455;
    width: 25%;
}
.intro .greet{
    color: #ef5455;

}

/* Home ends */
/* style for all the sction titles */
 .title{
    font-family: 'Montserrat', sans-serif;
    color: #20272e;
    padding: 20px;
    margin: 20px;
}

/* Skills start */
#Skills .title{
    padding-top: 10%;
}

.skill-name{
    color:#ef5455;
}

.skill-icon{
    color:#20272e;
    
}


.skill-list li{
    border: none;
    background-color: #20272e;  
    color:#fff;

}

.skill-list{
    border: #20272e solid 1px;
}
/* Sklls ends */

/* Project Starts */


.card{
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: #fff;
}


.title span{
    color:#ef5455;
}

/* Projects ends */

/* About Starts */

.about-info{
    width: 60%;

}

.resume a{
    color:#485563;
    text-decoration: none;
    border:2px solid #ef5455;
    display: inline-block;
}
.resume a:hover{
    background-color: #ef5455;
    color:white;
}
.profile-img img{
    width: 60%;
    height :auto;

    border:1px solid #20272e;
    border-radius: 10px;
}
/* About ends here */

/* Contact starts */


#Contact .title span{
    color:#ef5455;
}

.contact-links img{
    width:60px;
}
/* Contact ends */
#footer-section .footer-contents{
    background-color: #20272e;
    display: flex;
    justify-content: center;
}


.footer-contents p{
    display: inline-block;
    color: white;
    text-decoration: none;
    
}
.footer-contents a{
    color: #fff;
    text-decoration: none;
}

.footer-contents a:hover{
    background-color: #2c333a;
    color: #fff;
}

@media screen and (max-width:1000px){
    /* navbar */
    .nav-links{
        position: absolute;
        right: 0px;
        height:100vh;
        top: 0vh;
        background-color: #20272e;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        

        align-items: center;
        width: 80%;
        transform:translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity:0;
    }
    .burger{
        display: block;
    }
    /* navbar ends here */
    
    .skill-links li{
        display: inline-block;
        list-style: none;
        width: 20vh;
        height: 20vh;
        font-size: 20px;
        padding: 2px;
        margin: 10px;
    }

}

.nav-active{
    transform: translateX(0%);
}
.close i{ 
    opacity:0;
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}