body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.profile, .details, .projects {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
}

.profile {
    width: 300px;
    text-align: center;
}

.profile-image img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.profile-info h2 {
    margin: 10px 0 5px;
}

.profile-info p {
    margin: 5px 0;
    color: #777;
}

.profile-info button {
    margin: 10px 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.follow-btn {
    background-color: #007bff;
    color: white;
}

.message-btn {
    background-color: #28a745;
    color: white;
}

.profile-social ul {
    list-style-type: none;
    padding: 0;
}

.profile-social ul li {
    margin: 10px 0;
}

.details {
    width: 400px;
}

.details-info h3 {
    margin: 15px 0 5px;
    color: #333;
}

.details-info p {
    margin: 5px 0 15px;
    color: #555;
}

.edit-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #17a2b8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.projects {
    width: 400px;
}

.project-status h3 {
    margin-bottom: 20px;
    color: #333;
}

.project {
    margin-bottom: 15px;
}

.project p {
    margin: 0 0 5px;
    color: #555;
}

.progress {
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 20px;
    background-color: #007bff;
}
