body{
    
    margin:0;
    background:#f5f5f5;
}

header{
    background:linear-gradient(90deg,#6a4df4,#8a6df5);
    text-align:center;
    padding:40px;
    color:white;
}

.avatar{
    width:120px;
    height:120px;
    border-radius:50%;
}

.about{
    padding:40px;
    text-align:center;
}

.skills{
    width:60%;
    margin:auto;
}

.bar{
    background:#ddd;
    height:10px;
    margin-bottom:20px;
}

.bar div{
    height:10px;
    background:#6a4df4;
}

.html{width:85%;}
.css{width:70%;}
.js{width:60%;}

.services{
    text-align:center;
    padding:40px;
}

.box{
    display:inline-block;
    background:white;
    padding:20px;
    margin:10px;
    width:150px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.container{
    display:flex;
    gap:40px;
    padding:30px;
}

.about{
    flex:1;
}

.skills{
    flex:1;
}
.about, .skills{
    background:white;
    padding:30px;
    
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.skill{
    margin-bottom:20px;
}

.skill-title{
    display:flex;
    justify-content:space-between;
    margin-bottom:5px;
}

.bar{
    width:100%;
    height:12px;
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
}

.progress{
    height:100%;
    background:#6a4df4;
    border-radius:20px;
}

.html{
    width:85%;
}

.css{
    width:75%;
}

.js{
    width:60%;
}
.services{
    text-align:center;
    padding:40px;
}

.service-box{
    display:inline-block;
    width:180px;
    padding:25px;
    margin:15px;
    background:white;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);

    transition: all 0.3s ease;
}
.service-box:hover{
    transform: translateY(-10px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.header{
    background:linear-gradient(90deg,#6a4df4,#8a6df5);
    padding:40px;
    color:white;
}
