* {                     
    margin: 0;
    padding: 0;     
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: white;
    cursor: default;
}

::selection {
    background-color: orange;
}

html{
    background-color: black;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: transparent;
    color: white;
    width: 100%;
    
}

.logo{
    cursor: default;
}

.links{
    display: flex;
    gap: 20px;
}

.links a{
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: color 0.3s;
    cursor: default;

}

.repo-button {
    padding: 10px 20px;
    background-color: darkorange;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    cursor: default;
}

.repo-button:hover{
    background: black;
}

.repo-button a {
    text-decoration: none;
    color: white;
    cursor: default;
    transition: 0.3s ease;
    background-color: transparent;
}

.hero-section{
    width: 100%;
    height: 400px;
    justify-items: center;
    background-color: black;
    margin-bottom: 100px;
}

.intro-text h2{
    cursor: default;
    font-size: 50px;
}

.hero-image img{
    width: 840px;;    
}

.about-section{
    text-align: center;
    width:  1000px;
    height: auto;
    margin-top: 160px;
    background-color: black;
    margin: auto;
    padding-bottom: 20px;
}

.about-section h2{
    
    cursor: default;
    font-size: 50px;
}

.about-section h3{
    font-size: 55px;
    font-weight: 100px;
}

.about-section h4{
    font-size: 40px;
    
}


span{
    color: #FE7D84;
}

.project-section {
    width: 100%;
    background-color: #303030;
    height: 750px;
}

.project-section .heading{
    padding-top: 50px;
    padding-left: 50px;
}

.project-section h3{
    font-size: 45px;
}

.project-section h5{
    font-size: 20px;
    font-weight: 10px;
}

.project-img{
    padding-top: 30px;
    padding-left: 50px;
}

.project-img img{
    margin-right: 30px;
    border-radius: 10px;
}

.right-see{
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    padding-top: 30px;
}   

.right-see a{
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}  

.right-see i{
    font-size: 40px;
    margin-right: 10px;
    color: aqua;
}

.skills-section{
    width: 100%;
    height: 630px;
    background-color: #222222;
}

.heading-skills{
    padding-top: 50px;
    padding-left: 50px;
}

.heading-skills h2{
    font-size: 50px;
}
.heading-skills h4{
    font-size: 25px;
    font-weight: 10px;
}

.development{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 55px;
    
}

.development h4{
    font-size: 25px;
    border: white solid 2px;
    border-radius: 10px;
    margin-top: 50px;
    padding: 8px;
}

.cards{
    display: flex;
    gap: 30px;
    margin-top: 30px;                   
    border-radius: 10px;        
    
}


.skill-card{    
    width: auto;
    height: auto;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;

    justify-content: space-around;
    background-color: white;
    
}

.skill-card img{
    width: 70px;
    height: 70px;
}

.designing{
     display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 55px;
}

.designing h4{
    font-size: 25px;
    border: white solid 2px;
    border-radius: 10px;
    margin-top: 50px;
    padding: 8px;
}

.footbar{
    width: 100%;
    height: 630px;
   background-color: #303030;
   padding: 25px;
}

.footbar h2{
    font-size: 120px;

}

.footbar .email{
    text-decoration: none;
    color: #FE7D84;
}

.footbar .email:hover{
    text-decoration: line-through;
    
}

.insta{
    text-decoration: none;
    color: #F6BA53;
}

.insta:hover{
    text-decoration: line-through;

}

.twitter{
    text-decoration: none;
    color: aqua;
}

.twitter:hover{
    text-decoration: line-through;

}

.footbar h4{
    font-size: 30px;
    /* margin-top: 100px; */
    /* margin-left: 480px; */

}

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent; /* track color */
}
::-webkit-scrollbar-thumb {
    background-color: black; /* thumb color */
    border-radius: 10px;
    border: 3px solid #0b0b0b; /* creates padding around thumb */
}
::-webkit-scrollbar-thumb:hover {
    background-color: black;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: black #0b0b0b; /* thumb then track */
}


@media (max-width: 768px) {
    .links{
        display: none;
    }
    .navbar{
        justify-content: center;
    }
    .logo{
        margin-right: auto;
        font-size: 10px;
    }
    .repo-button{
        padding: 5px 5px;
    }

    .hero-section{
        height: 120px;
        width: auto;
    }

    .hero-image img{
        width: 100%;
        padding: 15px;
    }

    .intro-text h2{
        font-size: 30px;
        padding: 15px;
    }

    .about-section{
    text-align: center;
    width:  auto;
    height: 420 px;
    margin-top: 160px;
    justify-items: center;
    background-color: black;
    padding-left: 20px;
    padding-right: 20px;
    }

    .about-section h2{
        font-size: 45px;
        padding: 8px;
    }

    .about-section h3{
        font-size: 30px;
        

    }

    .about-section h4{
        font-size: 25px;
    }

    .project-section{
        height: 370px;
    }

    .heading h3{
        font-size: 30px;
    }

    .project{
        
    }
    .project-img img{
        width: 320px;
        height: 15;

        margin-right: 10px;
    }

    .right-see a{
        font-size: 20px;
    }

    .right-see i{
        font-size: 30px;
    }

    .skills-section{
        height: auto;
        padding-bottom: 20px;
    }

    .heading-skills h2{
        font-size: 32px;
    }

    .heading-skills h4{
        font-size: 18px;
        margin-right: 10px;
    }

    

    .development h4{
        font-size: 20px;
    }

    .cards {
        gap: 20px;
    }

    .skill-card img {
        width: 50px;
        height: 50px;
    }

    .footbar {
        height: auto;
    }

    .footbar h2 {
        font-size: 55px;
    }
    
}
