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


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

section{
    margin-bottom: 50px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}


h1, h2 {
    color: #333;
    margin-bottom: 20px;
}


p {
    margin-bottom: 10px;
}


ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}


.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}


.experience-item, .education-item {
    margin-bottom: 30px;
    border-left: 3px solid #007bff;
    padding-left: 20px;
    position: relative;
}


.experience-item::before, .education-item::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #007bff;
}


.experience-item:last-child, .education-item:last-child {
    margin-bottom: 0;
}


.skills {
    margin-top: 30px;
}


.skill-item {
    margin-bottom: 10px;
}


.skill-progress {
    width: 100%;
    background-color: #ddd;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}


.skill-progress-bar {
    width: 0;
    height: 100%;
    background-color: #007bff;
    border-radius: 5px;
    transition: width 1s ease;
}

