body{
    background-color: #0f0f0f;
}
.profile-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    height: 100vh;
}
.profile-container{
    width: 100%;
    max-width: 1180px;
    display: flex;
    align-items: center;
    gap: 50px;
}
.profile-pic{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.profilepic{
    width:250px;
    padding: 10px;
}
.profile-info{
    display:flex ;
    flex-direction: column;
    gap: 5px;
    font-size: 20px;
}
.profile-info .name{
    font-size: 32px;
    display: flex;
    gap: 10px;
}
.profile-info .address-info .address-title{
    font-size: 32px;
    padding-top: 20px;
}
.edit-button{
    background-color: transparent;
    color: #fff;
    font: inherit;
    font-weight: 500;
    border: 2px solid #3f3d3d;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
    width: 100%;
    height:100%;
}
.edit-button:hover{
    background-color: #D1ab47;
    color: #000;
}
.your-profile{
    padding: 0px 0px 100px;
    background-color: #0F0F0F;
    text-align: center;
    letter-spacing: 10px;
    font-size: 40px;
    font-weight: 600;
}