#extraInfo {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#aboutMe-container{
  width: 90%;
  height: 75%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

#aboutMe-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.90rem, 2vw, 1.75rem);
  padding: 3%;
  width: 50%;
}

#aboutMe-images{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#aboutMe-imageGrid{
  width: 95%;
  height: 95%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

#aboutMe-imageGrid img,
#aboutMe-imageGrid video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  min-width: 0;
  min-height: 0;
}

#extraInfo h3 {
  font-size: 40px;
}

@media screen and (max-width: 840px) {
  #aboutMe-imageGrid video{
    display: none;
  }

  #aboutMe-imageGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}
