.container {
    margin: 50px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
*{
    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;
}

.media-body ml-4{
    border: 1px solid black;
    padding: 20px 100px;
}
.card-body{
    display: flex;
}
img{
    width: 150px;
    height: auto;
    border-radius: 50%;
}
.border-light{
    border: none;
    padding: 2rem;
}
.card-body{
    gap: 20px;
    display: flex;
    /* flex-wrap: nowrap; */
    flex-direction: column;
}
.form-label{
    display: flex;
    align-items: center;
}
.form-control{
    width: 100%;
    height: 30px;
    
    border-radius: 3px;
}
.border-light{
    display: flex;
    padding: 30px;
    border: none;
}
.alert-message{
    margin-top: 20px;
    border-radius: 30px;
    color: white;
    background: black;
    display: flex;
    padding: 20px;
}
.account-text{
    font-size: 34px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;

}
.btn1,
.btn2{
    height: 30px;
    background-color: transparent;
    color: #fff;
    font: inherit;
    font-weight: 500;
    border: 2px solid #3f3d3d;
    border-radius: 10px;
    padding: 1px 50px;
    cursor: pointer;
}
.btn2 a{ 
    text-decoration: none;
    color: white;
}
.account-settings-fileinput{
    background-color: black;
    color: #fff;
    font: inherit;
    font-weight: 500;
    border: 2px solid #3f3d3d;
    border-radius: 10px;
    padding: 8px 40px;
    cursor: pointer;
   
    height: 100%;
}
.card-body1{
    gap: 20px;
    display: flex;
    /* flex-wrap: nowrap; */
    flex-direction: column;
    width: 100%;
    border: 1px solid #3f3d3d;
    padding: 10px 15px;
    font-size: 16px;
    text-transform: none;
    border-radius: 10px;
  
    color: black;
}


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;
}