body{
    margin:0;
    background-color: #f3f4f6;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.container{
    width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 30px;
}

.profile{
    text-align: center;
}

.profile img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #4a90e2;
    object-fit: cover;
}

.profile h1{
    font-size: 24px;
    font-weight: bold;
}

.profile p{
    font-size: 12px;
    color: gray;
}
h2{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #4a90e2;
    padding-bottom: 5px;
}

.skill{
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 8px 12px;
    margin-right: 5px;
    border-radius: 20px;
    font-size: 12px;
    position: relative;
}
#btnAddSkill{
    display: block;
    margin: 12px auto;
}
#btnAddExperience{
    display: block;
    margin: 12px auto;
}
.experience-item{
    font-size: 14px;
    margin-bottom: 8px;
}

.education{
    font-size: 14px;
}
button{
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12px;
    cursor: pointer;
}
fieldset{
    margin-top: 10px;
    padding: 10px;
}

fieldset input{
    width: 200px;
}

#txtDescription{
    width: 80%;
}