
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    
    font-family: Arial, sans-serif;
    
    box-sizing: border-box;
  }

  .profile {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    margin-right:0%;
  }

  .profile-info {
    flex: 1;
  }

  .username {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 0%;
    padding-left: 0%;
  }

  .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
  }

  .stats div {
    font-size: 0.95rem;
  }

  .bio {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .gallery1 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 5px;

    margin-right: 2%;
    
  }

  .gallery1 img {
    width: 100%;
    height: 60vh ;
    aspect-ratio: 1/1;
    object-fit: contain;
      border-radius: 20px;

      margin-right: 2%;
  }

  .gallery1 video {
    width: 100%;
    height: 60vh ;
    aspect-ratio: 1/1;
    object-fit: contain;
      border-radius: 20px;

      margin-right: 2%;
  }

  @media (max-width: 480px) {
    .profile {
      flex-direction: column;
      align-items: flex-start;
    }

    .profile-img {
      width: 100px;
      height: 100px;
    }

    .stats {
      gap: 10px;
      font-size: 0.85rem;
    }

    .gallery1 {
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    .gallery1 img {
      height: 75vh ;
    }
  
    .gallery1 video {
      height: 75vh ;
    }
    
  }
  
  
  
  
  /* Overlay */
.overlay {
position: absolute;
height : auto;
width : auto;
top: 0%;
left: 0px;
right: 0px;
display: flex;
border-radius: 25px;
justify-content: space-between;

background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);



}


.dropdown {
position: relative;
display: inline-block;
}

.dropbtn {
background-color: #c89666;
color: white;
padding: 10px 16px;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 4px;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {
background-color: #ddd;
}

.dropdown:hover .dropdown-content {
display: block;
}

.dropdown:hover .dropbtn {
background-color: #c89666;
}


