*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #F2F1F0;
}
.container .header{
    display: flex;
    justify-content: space-between;
    margin: 1rem 5rem ;
    border-radius: 14px;
}
.header h4 span{
    color: #6D6D6D;
    font-weight: 600;
}
.header ul{
    display: flex;
    gap: 1rem;
}
.header ul li{
    list-style: none;
}
.header ul li a{
    text-decoration: none;
    color: #6D6D6D;
    font-weight: 400;
}
.header ul li a:hover{
    text-decoration: underline;
}
.hero{
    text-align: center;
    padding: 4rem;
    margin-top: 1rem;
}
.hero .profile{
    display: block;
}
.hero .profile img{
    background-color: #6D6D6D;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
}
.hero span{
    background-color: #FFFFFE ;
    padding: .5rem;
    border-radius: 15px;
}
.hero .content{
    margin-top: 1rem;
    font-weight: bolder;
    color: #0B0B0B;
    margin-bottom: 10px;
}
.hero .content p{
    color: #6D6D6D;
    font-weight: 400;
}
.hero .btn{
    background-color: #242424;
    color: #fff;
    border: none;
    outline: none;
    padding: 1rem;
    border-radius: 13px;
    margin-top: 10px;
    cursor: pointer;
}
.skills{
    background-color: #FFFFFE;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}
h1{
    text-align: center;
    margin-top: 1rem;
    font-weight: 900;
}
.skills .cont{
    display: flex;
    justify-content: space-around;
    padding: 3rem;
}
.skills .cont h5{
    font-weight: 800;
    color: #6D6D6D;
}
.service{
    display: flex;
    justify-content: space-between;
    margin: 1rem 5rem;
}
.service .row{
    padding: 1rem;
}
.service .row img{
    margin-top: 1rem;
}
.service .row h3{
    margin-top: 1rem;
    color: #0B0B0B;
}
.service .row p{
    margin-top: 1rem;
    color: #6D6D6D;
}
.about{
    background-color: #FFFFFE;
    display: flex;
    justify-content: space-around;
    padding: 3rem;
}
.about .img{
  margin-top: 10px;
}
.about .img img{
    width: 100%;
    border: 4px solid #6d6c6c;
    margin-top: 10px;
}
.about .row{
    padding: 1rem;
    margin-left: 1rem;
    gap: 10px;
    color: #242424;
}
.about .row .me{
    background-color: #ffe5c1;
    padding: 10px;
    border-radius: 5px;
}
.about .row .skill{
    background-color: #dce0ac;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
}
.about .row .worked{
    background-color: #fff6e9;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
}


.projects{
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 10px;
}
.project{
    box-shadow: 2px 2px 2px 2px #6d6c6c;
    padding: 1rem;
}

.project h4{
    font-weight: 700;
    color: #0B0B0B;
    margin-top: 8px;
}
.project button{
    background-color: #FFFFFE;
    color: #0B0B0B;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 14px;
    align-items: center;
    width: 50%;
    margin-top: 5px;
}
.project button a{
    text-decoration: none;
    color: #0B0B0B;
}
.contact{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.contact form{
    display: flex;
    flex-flow: column wrap;
    padding: 10px;
    box-shadow: 2px #242424;
    width: 50%;
    height: 50%;
}
hr{
    margin-top: 3rem;
    line-height: 5px;
}
.contact form input{
    width: 100%;
    border: none;
    margin: 5px;
    padding: 10px;
}
.contact form button{
    padding: 10px;
    background-color: #0B0B0B;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 5px;
}
footer{
    background-color: #FFFFFE;
    padding: 2rem;
    text-align: center;
    color: #0B0B0B;
}






@media (max-width: 767px){
    .service{
        flex-direction: column;
        text-align: center;
    }
    .about{
        flex-direction: column;
    }
    .about .img{
        border: none;
        text-align: center;
    }
    .about .img img{
        border: 2px dashed;
        margin-bottom: 10px;
    }
    .projects{
        display: flex;
        flex-flow: column wrap;
        gap: 1rem;
        text-align: center;
    }
    .project img{
        width: 200px;
    }
}