.org-chart {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 100%;
  padding: 2rem;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0.25rem;
}

.Chairman {
  flex-basis: 100%;
}

.thumbnail {
  width: 135px;
  height: 135px;
  border-radius: 0.15rem;
  margin-bottom: 15px;
  object-fit: contain;
  background-color: white;
}

.name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.position {
  font-size: 1rem;
}
.tooltip {
  position: relative;
  display: flex;
  flex-direction: column;
}

.tooltip-text {
  background-color: lightgray;
  color: black;
  padding: 0.5rem;
  border-radius: 0.15rem;
  display: none;
  font-size: small;
}

.tooltip-hover-element:hover ~ .tooltip-text {
  display: block;
}
