body {
 
  font-family: 'Mukta', sans-serif;
}

.logo-container {
  height: 70px;
  justify-content: center;
  display: flex;
  flex-direction: row;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
 
}

.logo {
  height: 70px;
  
  
 
}

.grid-container-wrapper {
  overflow-x: auto;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.grid-item {
  
  height: 100%;
  width: 100%;
  max-width: 300px; /* Set a maximum width for each item */
}

.bio {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
}