body{
    background-color: #121F26;
    color: white;
}
::-webkit-scrollbar{
    display: none;
}

/* nav */

/* Reset some basic elements */
*,
*::before,
*::after {
    box-sizing: border-box;
    background-color: #121f26;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Styling the header */
.home-header {
    color: #fff; /* White text color */
    padding: 10px 0; /* Padding around the navbar */
    /* position: fixed; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Navigation bar layout */
.home-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.home-navbar-left,
.home-navbar-right,
.home-navbar-center {
    display: flex;
    align-items: center;
}

.home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff; /* White text for the link */
}

.home-navbar-left img,
.home-navbar-right img {
    max-width: 50px; /* Adjust logo and icons size */
    height: auto;
}
.home-navbar-right-notification img{
    max-width: 24px;
    height: auto;
    margin-right: 50px;
}

.home-navbar-right-profile img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.CodeBlog-Name {
    margin-left: 10px; /* Space between logo and site name */
    font-weight: 600; /* Semi-bold for the site name */
}

/* Navigation links */
.home-nav-links {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    display: flex; /* Align links horizontally */
    gap: 20px; /* Space between links */
}

.home-nav-links a {
    text-decoration: none;
    color: #fff; /* White text for links */
    font-weight: 400; /* Regular font weight for links */
}

.home-nav-links a:hover {
    color: #ccc; /* Lighter color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-navbar-center {
        display: none; /* Hide center links on smaller screens */
    }

    .home-navbar {
        justify-content: space-between;
    }
}

/* Additional responsive or specific styles can go here */

.home-nav-links li {
    margin-right: 20px; /* Adds space to the right of each link */
}

.home-nav-links li:last-child {
    margin-right: 0; /* Ensures the last item doesn't have extra space on the right */
}

/* nav */

.name-edit{
    margin-top: 80px;
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 180px;
}
.name-edit button{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #6B9AC4;
}
.name-edit button img{
    height: 20px;
    width: 20px;
    background-color: #6B9AC4;
    color:#fff
}
.profile-details{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.profile-image{
    height: 400px;
    width: 400px;
    border-radius: 50%;
    background-size: cover;
    margin-left: 100px;
}
.profile-image img{
    height: 400px;
    width: 400px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-text{
    margin: auto;
}
.profile-text h1{
    font-size: 70px;
    margin: 0;
}
.profile-social{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.profile-links{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}
.profile-button{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.profile-social{
    margin-top:60px ;
}

.profile-social .profile-links{
    width: 500px;
    height: 100px;
    margin-left: 55px;
}
.profile-social .profile-links .linkedin,.github,.twitter,.insta{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-size: cover;
}
.profile-social .profile-links .linkedin img,.github img,.twitter img,.insta img{
    width: 50px;
    height: 50px;
}

.profile-social .profile-button{
    width: 300px;
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.profile-social .profile-button .rank,.like{
    background-color: #6B9AC4;
    width: 120px;
    height: 45px;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
