.bdy {
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
  }

  .container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }

  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .circle img {
    width: 150px;
    height: 150px;
    border: 4px solid blue;
    border-radius: 50%;
    object-fit: cover;
  }

  .name {
    font-weight: bold;
    margin-top: 10px;
  }

  .designation {
    color: #333;
  }