body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f1f1f1;
  }
  
  h1 {
    color: #ededed;
    font-size: 36px;
    margin: 30px 0;
    text-transform: uppercase;
  }
  
  .profile-picture img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 5px solid #333333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  h2 {
    color: #333333;
    font-size: 24px;
    margin: 20px 0;
    text-transform: uppercase;
  }
  
  p {
    font-size: 18px;
    line-height: 1.5;
    margin: 20px 0;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    font-size: 18px;
    margin: 10px 0;
  }
  
  a {
    color: #333333;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .contact-info {
    background-color: #333333;
    color: white;
    padding: 20px;
    border-radius: 5px;
  }
  
  .contact-info li {
    margin: 10px 0;
  }

  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px;
  }
  .box {
    width: 300px;
    height: 300px;
    background-color: #333;
    color: #fff;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position:relative;
  }
  .box:hover {
    transform: scale(1.1);
    background-color: #666;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
  }

  .l1{
    max-width:260px;
   bottom:50px;
  }


  .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
  }

  .bl-box{
    background-color: black;
    background-size:contain;
    width: fit-content;
    align-items: center;
    text-align: center;
    margin:auto;
  }

