* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-size: 1.2rem;
}

:root {
    --text-color: #9e9e9e;
    --logo-color: rgb(106 111 115);

}

/* Header Section */
html {
    scroll-behavior: smooth;
}


header {
    width: 100%;
    height: 100%;
    box-shadow: 0px -3px 15px gray;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 0;
    font-family: "Mulish", sans-serif;
    position: sticky;
    top: 0;
    background-color: #f2f2f1fc;
    z-index: 10;

    & .logo a {
        text-decoration: none;
        font-weight: 700;
        font-size: 2.5rem;
        color: var(--logo-color);
    }

    & .navabar ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    & li {
        list-style: none;
    }

    & ul li a {
        text-decoration: none;
        font-weight: 700;
        color: var(--logo-color);
        transition: .2s linear;
        -webkit-transition: .2s linear;
        -moz-transition: .2s linear;
        -ms-transition: .2s linear;
        -o-transition: .2s linear;
    }

    & ul li a:hover {
        color: rgb(80, 189, 252);
    }

}

/* Home Section */

.home {
    padding: 0px 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    line-height: 60px;
    width: 100%;
    height: 90vh;
    background-color: #9e9e9e21;

    & .soicle {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    & .soicle a {
        text-decoration: none;
        color: black;
    }

    & .soicle :first-child:hover {
        color: #0a66c2;
    }

    & .soicle :nth-child(1):hover {
        color: rgb(85, 85, 85);
    }

    & .text-home {
        width: 43%;
    }


    & .text-home p {
        font-size: 1.7rem;
        font-weight: 600;
        font-family: "Mulish", sans-serif;
        color: var(--logo-color);

    }

    & .text-home h1 {
        font-size: 3rem;
        font-family: "Mulish", sans-serif;
    }

    & .teck-stack {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    & .teck-stack ul {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    & .teck-stack h2 {
        font-family: "Mulish", sans-serif;
        padding-right: 10px;

    }

    & .teck-stack ul li {
        list-style: none;
    }

    & .teck-stack ul li img {
        width: 57px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .2s linear;
        -webkit-transition: .2s linear;
        -moz-transition: .2s linear;
        -ms-transition: .2s linear;
        -o-transition: .2s linear;
        flex-wrap: wrap;
    }

    & .teck-stack ul li img:hover {
        transform: scale(1.4);
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -o-transform: scale(1.4);
    }

    & .icon-tech .bx {
        padding: 0 12px;
    }

    &.img-home img {
        width: 100%;
        height: 100%;

    }

}

/* About section */

.about {
    padding: 10% 0;
    margin: auto;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-around;

    & .about-section h3 {
        padding-bottom: 15px;
        color: rgb(27, 151, 234);
        font-family: "Mulish", sans-serif;
    }


    & .about-section h4 {
        padding-bottom: 15px;
        font-size: 1.7rem;
        font-weight: 700;
        font-family: "Mulish", sans-serif;
    }

    & .about-section p {
        font-family: "Mulish", sans-serif;
        color: var(--logo-color);
    }



    & .image-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .image-section img {
        width: 80%;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
    }

}

.project {
    margin: auto;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    background-color: #9e9e9e21;

    & h3 {
        color: rgb(27, 151, 234);
        font-size: 1.2rem;
        font-family: "Mulish", sans-serif;
    }

    & .project-section h4 {
        font-family: "Mulish", sans-serif;
        font-size: 2rem;
    }
}

.contact {
    padding: 5% 0;
    width: 60%;
    margin: auto;
    line-height: 50px;
    font-family: "Mulish", sans-serif;

    & p {
        color: rgb(27, 151, 234);
        font-weight: 600;
    }

    & h3 {
        font-size: 1.7rem;
    }

    & .contact-sys {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    & .icon {
        padding: 30px 10px;
    }

    & i {
        position: relative;
        bottom: 10px;
    }

    & a {
        text-decoration: none;
        color: var(--logo-color);
        font-family: "Mulish", sans-serif;
    }

    & a:hover {
        color: rgb(27, 151, 234);
    }



}



footer {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #5e5959c1;
    padding: 20px 0;

    & p {
        color: aliceblue;
        font-weight: 700;
        font-family: "Mulish", sans-serif;
    }
}

/* Rimaning Part */
#element {
    color: rgb(27, 151, 234);
    box-shadow: 3px;
    font-weight: 700;
}

#element {
    font-size: 1.9rem;
}


i {
    font-size: 35px;
    padding: 0 5px;
    cursor: pointer;
}

/* Home Section */

@media screen and (max-width:1279px) {
    header {
        box-shadow: 0px 3px 10px gray;
        padding: 10px 0;
    }

    .home {
        padding: 0px 5px;

        & .text-home p {
            font-size: 1.5rem;
        }

        & .text-home h1 {
            font-size: 2.5rem;
        }

        & .teck-stack ul li img {
            width: 47px;
            padding: 0 10px;
            transition: .2s linear;
            -webkit-transition: .2s linear;
            -moz-transition: .2s linear;
            -ms-transition: .2s linear;
            -o-transition: .2s linear;
            flex-wrap: wrap;
        }

        & .teck-stack ul li img:hover {
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
        }

        & .img-home img {
            width: 85%;
        }
    }


    .about {
        padding: 10% 0;
        margin: auto;
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: space-around;

        & .about-section h3 {
            padding-bottom: 15px;
            color: rgb(27, 151, 234);
            font-family: "Mulish", sans-serif;
        }


        & .about-section h4 {
            padding-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
            font-family: "Mulish", sans-serif;
        }

        & .about-section p {
            font-size: 1.1rem;
            font-family: "Mulish", sans-serif;
            color: var(--logo-color);
        }



        & .image-section {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        & .image-section img {
            padding-right: 20px;
            width: 90%;
            border-radius: 40px;
            -webkit-border-radius: 40px;
            -moz-border-radius: 40px;
            -ms-border-radius: 40px;
            -o-border-radius: 40px;
        }

        #element {
            font-size: 1.7rem;
        }
    }

    .project {


        /* & h3 {
            color: rgb(27, 151, 234);
            font-size: 1.2rem;
            font-family: "Mulish", sans-serif;
        } */

        & .project-section h4 {
            font-family: "Mulish", sans-serif;
            font-size: 1.7rem;
        }
    }

    .contact {

        & p {
            color: rgb(27, 151, 234);
            font-weight: 600;
        }

        & h3 {
            font-size: 1.4rem;
        }
    }
}

@media screen and (max-width:1160px) {
    .home {
        padding: 0px 8px;

        & .text-home p {
            font-size: 1.3rem;
        }

        & .text-home h1 {
            font-size: 2.2rem;
        }

        & .teck-stack ul li img {
            width: 40px;
            padding: 0 10px;
            transition: .2s linear;
            -webkit-transition: .2s linear;
            -moz-transition: .2s linear;
            -ms-transition: .2s linear;
            -o-transition: .2s linear;
            flex-wrap: wrap;
        }

        & .teck-stack ul li img:hover {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
        }

        & .img-home img {
            width: 80%;
        }
    }

    #element {
        font-size: 1.5rem;
    }

}

@media screen and (max-width:810px) {
    .home {
        text-align: center;
        padding: 0px 3%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 35px;
        line-height: 40px;
        width: 100%;
        height: 100%;

        & .text-home {
            width: 100%;
        }

        & .text-home p {

            font-size: 1.1rem;
        }

        & .text-home h1 {
            font-size: 1.8rem;
        }

        & .teck-stack {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            line-height: 30px;
        }

        & .teck-stack p {
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }

        & .teck-stack ul li img {
            width: 50px;
            padding: 0 10px;
            transition: .2s linear;
            -webkit-transition: .2s linear;
            -moz-transition: .2s linear;
            -ms-transition: .2s linear;
            -o-transition: .2s linear;
            flex-wrap: wrap;
        }

        & .teck-stack ul li img:hover {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
        }

        & .img-home img {
            width: 65%;
            padding-top: 10%;

        }

        & .soicle {
            padding: 5% 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .about {
        padding: 16% 0;
        margin: auto;
        width: 75%;
        display: flex;
        text-align: center;
        flex-direction: column;

        & .about-section h3 {
            padding-bottom: 10px;
            color: rgb(27, 151, 234);
            font-family: "Mulish", sans-serif;
        }


        & .about-section h4 {
            padding-bottom: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            font-family: "Mulish", sans-serif;
        }

        & .about-section p {
            font-size: 16px;
            font-family: "Mulish", sans-serif;
            color: var(--logo-color);
        }



        & .image-section img {
            margin-bottom: 20px;
        }


        #element {
            font-size: 1.7rem;
        }
    }

    .project {
        padding: 0 2%;

        /* & h3 {
            color: rgb(27, 151, 234);
            font-size: 1.2rem;
            font-family: "Mulish", sans-serif;
        } */

        & .project-section h4 {
            font-family: "Mulish", sans-serif;
            font-size: 1.2rem;
        }
    }

    .contact {
        line-height: 40px;
        text-align: center;
        width: 90%;

        & p {
            color: rgb(27, 151, 234);
            font-weight: 600;

        }

        & h3 {
            font-size: 16px;
        }

        & .contact-sys {
            width: 100%;

        }

        & .icon {
            padding: 10px 0px;
        }

        & a {
            font-size: 1.1rem;
            text-decoration: none;
            color: var(--logo-color);
            font-family: "Mulish", sans-serif;
        }

        & a:hover {
            color: rgb(27, 151, 234);
        }

    }

    footer {
        width: 100%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-color: #5e5959c1;
        padding: 20px 0;

        & p {
            padding: 0 10px;
            font-size: 15px;
            color: aliceblue;
            font-weight: 700;
            font-family: "Mulish", sans-serif;
        }
    }

    #element {
        font-size: 1.2rem;
    }
}




/* This is a Header section */

@media screen and (max-width:920px) {
    header {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 15px 0;


        & .logo a {
            font-size: 1.8rem;
        }

        & li a {
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        & .navabar ul {
            gap: 30px;
        }

    }
}

@media screen and (max-width:715px) {
    header {
        width: 100%;
        height: 100%;

        & .navabar {
            display: none;
        }
    }
}