@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
}

.linkedin-img {
    position: relative;
    left: 75px;
    top: -56px;
}

header {
    width: 100%;
    height: 100px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 999;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hamburgar {
    display: none;
    transition: 0.3s;
}

.nav-bar ul {
    display: flex;
}

.nav-bar ul li a {
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover {
    color: #000;
    background: #fff;
}

.nav-bar ul li a.active {
    color: #000000;
    background: #fff;
}

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;

    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 30px;

    }
}

@media only screen and (max-width: 900px) {
    .hamburgar {
        display: block;
        cursor: pointer;
    }

    .hamburgar .line {
        width: 30px;
        height: 3px;
        background: #fff;
        margin: 6px 0;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #000000;
        transition: 0.5s;
        overflow: hidden;
    }

    .nav-bar.active {
        top: 130px;
        height: 450px;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar.active ul {
        opacity: 1;
    }

    .nav-bar ul li a {
        margin-bottom: 12px;
    }
}

.homepage {
    position: relative;
    top: 400px;
    font-size: 34px;
    color: #fff;
    text-align: left;
    padding-left: 50px;
    padding-right: 70px;

}

.git-icon {
    position: relative;
    top: 450px;
}

.abt {
    position: relative;
    top: 800px;
    font-size: 35px;
    color: goldenrod;
    text-align: left;
    padding-top: 150px;
    padding-left: 50px;
    padding-right: 50px;
}

.abt-list {
    position: relative;
    top: 850px;
    font-size: 25px;
    color: white;
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
}


.skils {
    position: relative;
    top: 1300px;
    font-size: 35px;
    color: goldenrod;
    text-align: right;
    padding-top: 150px;
    padding-left: 50px;
    padding-right: 50px;
}

.skils-list {
    position: relative;
    top: 1360px;
    font-size: 25px;
    color: white;
    text-align: right;
    padding-left: 50px;
    padding-right: 50px;
}

.proj {
    position: relative;
    top: 1900px;
    font-size: 35px;
    color: goldenrod;
    text-align: left;
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

.proj-list {
    position: relative;
    top: 1950px;
    font-size: 20px;
    color: wheat;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 8px;
}