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

body {
    background: rgb(22, 16, 16);
    color: rgb(216, 209, 200);
    font-size: 1.3em;
}

header {
    background: rgb(6, 6, 7);
    position: sticky;
    top: 0;
    padding: 1.3em 2.6em;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    column-gap: 1.5em;
}

header nav a {
    text-decoration: none;
    color: inherit;
}

main {
    max-width: 92vw;
    margin: auto;
    /* border: 4px solid white; */
}

.main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1.3em;
    /* border: 2px solid white; */
}

.bio span {
    color: aquamarine;
}

.bio > * {
    margin-bottom: 0.7em;
}

.btn {
    background:  rgb(6, 181, 208);;
    font-weight: bold;
    font-size: larger;
    box-shadow: 5px 5px 250px rgb(6, 181, 208);
    border-radius: 0.5em;
    padding: 0.3em 1em;
}

.slide {
    border-radius: 100%;
    width: 300px;
    border: 3px solid rgb(6, 181, 208);
    box-shadow: 5px 5px 250px rgb(6, 181, 208);
}

.tech-exp h2 {
    margin-block: 1.2em;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5em;
    list-style: none;
}

.git {
    background: black;
    border: 3px solid rgb(6, 181, 208);
    border-radius: 7px;
    padding: 1em;
    max-width: 30%;
}

.footer {
    text-align: center;
    margin-top: 80px;
}

.About {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
}

.me {
    margin-left: 30px;
}

.skils {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.care:hover {
    text-decoration: underline;
    text-decoration-color: rgb(6, 181, 208);
}

.about{
    text-align: center;
    font-size: 50px;
    color: rgb(6, 181, 208);
}

.image{
    border-radius: 100%;
    width: 500px;
    border: 3px solid rgb(6, 181, 208);
    box-shadow: 5px 5px 250px rgb(6, 181, 208);
}

.abt{
    display: flex;
    justify-content: space-evenly;
}

.img {
    border-radius: 7px;
    padding: 1.5em;
    max-width: 30%;
}

.work{
    display: flex;
    justify-content: space-evenly;
    margin-top: 35px; 
 
}

.icon{
    background: white;
    color: rgb(122, 116, 116);
    width: 350px;
    height:500px;
    border-radius: 20px;
    font-size: 25px;
    border: 3px solid rgb(6, 181, 208);
}

.icon:hover {
    border: transparent;
    margin-top: -20px;
    transition: .3s ease-in;
    border: 3px solid rgb(6, 181, 208);
}

.png{
    margin-left: 30px;
}

.h2-web{
    color: black;
     margin-left: 30px;
}

.bto{
  background:rgb(6, 181, 208);
  
}


@media (max-width: 600px) {
    header nav {
        display: block;
    }

    header nav div {
        margin-bottom: 1em;
    }

    .skills {
        display: block;
    }

    .git {
        max-width: 100%;
        margin-bottom: .7em;
    }

    .about{
        display: block;
    }
       
    .abt{
        display: block;
    }

    .image{
        width: 300px;
    }

    .work{
        display: block;

    }

    .icon{
        height: 350px;
        max-width: 100%;
        margin-bottom: .7em;
       
    }
}

