.main-content {
    display: flex;
    justify-content: space-between;
}

.welcome {
    width: 75%;
}

.featured-authors {
    width: 30%;
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
}

.featured-authors h2 {
    text-align: center;
    margin-bottom: 20px;
}

.author-tile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.author-tile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h3 {
    margin: 0;
    font-size: 1.1em;
}

.author-stats {
    margin-top: 5px;
    font-size: 0.9em;
    color: #555;
}

.author-stats span {
    margin-right: 10px;
}

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

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}