.section1{ font-family: 'Poppins', sans-serif;
    color: #ffff;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    height: 100vh;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}

body{
    background-color: rgb(0, 0, 0);
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 13vh;
}
.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(rgba(88, 70, 70, 0.6), transparent);
    z-index: 100;
}
.nav-logo img{
    margin-top: 10px;
    color: white;
    width: auto;
    height: 80px;
}
.nav-menu ul{
    display: flex;
}.nav-menu ul{
    display: flex;
}.nav-menu ul li,
.popup li{
  list-style-type: none;
}
.popup{
  border-radius: 20px;
}
.popup li a{
  text-decoration: none;
  font-weight: 500;
  color: black;
  padding: 3px;
}

.user-btn{
    display: flex;
    height: 50px;
    width: 50px;
    margin-top: 30px;
    position: relative;
    }
    .popup {
      position: absolute;
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 10px;
     
      display: none; /* Hide by default */
  }
  
  /* Style for the pop-up content */
  .popup-content {
      color: #333;
  }
  
  /* Style for showing the pop-up when hovering */
  .user-btn:hover + #popup {
      display: block;
  }
.nav-menu li .link{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 25px;
    font-size: 20px;
}
.link:hover, .act{
    border-bottom: 2px solid #fff;
}

*{padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}
.container1 {
    width: 100%;
    max-width: 1180px;
    
    gap: 50px;
}
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 20px;
}
.profilepic {
    width: 250px;
    padding: 10px;
    border-radius: 50%;
}
.profile-info .name {
    font-size: 32px;
    display: flex;
    gap: 10px;
}
.your-profile{
    font-size: 30px;
}
.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%;
}
.profile-info .address-info .address-title {
    font-size: 32px;
    padding-top: 20px;
}

footer{
    position:relative;
    bottom: 1;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}