
.intro {
    background: url(../img/art/spaceship-AboutPage-01.svg);
    background-size: cover;
    margin-top: 74px;
    padding: 5rem 10rem 7rem;
    background-position: top;
}
.intro h1 {
    color: #ffffff;
    padding-bottom: 0;
    line-height: 1;
    font-size: 4rem;
    margin-top: 0;
}
.intro h1 span {
    font-size: 8rem;
    margin-left: 6px;
}
.intro div {
    width: 70%;
    max-width: 1400px;
}
.intro h5 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 200;
    max-width: 80%;
}
#contact-button-technology {
    color: white;
    background-color: var(--teal);
    padding: 1rem 3rem;
    font-size: 1.5rem;
    text-align: center;
    display: inline-block;
    margin-bottom: 22px;
}
#contact-button-technology h5 {
    margin: 0 auto;
}
#contact-button-creative {
    color: white;
    background-color: var(--teal);
    padding: 1rem 5.7rem 1rem 3rem;
    font-size: 1.5rem;
    text-align: center;
    display: inline-block;
    justify-content: space-around;
    letter-spacing: 0.1px;
    width: 50%;
}
#contact-button-creative h5 {
    margin: 0 auto;
}
<!-------------image text hover test ------------>
.image-container {
  position: relative; /* Needed for absolute positioning of the overlay */
  width: 300px; /* Or whatever size you need */
  height: 200px; /* Or whatever size you need */
}

.image-container img {
  display: block; /* Ensures the image takes up the full width of the container */
  width: 100%; /* Makes the image responsive */
  height: 100%; /* Makes the image responsive */
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease; /* Smooth fade-in effect */
}

.image-container:hover .text-overlay {
  opacity: 1; /* Show on hover */
}

<!------------th custom hover text--------->
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  width: 130%;
  margin-left: -17%;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* ---------- team bio section --------- */
.team-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 0;
}
.team {
	padding: 2rem;
    width: 20%;
    text-align: center;
}
.team p {
	font-size: 12px;
	font-weight: 300;
	text-align: left;
	/*padding: 18px;*/
	color: #000;
}
.team h3 {
	color: #97999B;
	font-size: 1.6rem;
	font-weight: 700;
    margin: 1rem 0 0;
}
.team > h5 {
    margin: 0;
    font-weight: 100;
    font-size: 14px;
}
h5 {
    font-size: 20px !important;
    margin: 0;
    font-weight: 100;
}
.team img {
	width: 80%;
	border-radius: 8px;
}
#team-bios {
    /* background-image: url(../img/Team/background-container.svg); */
    background-color: var(--div-gray-bckgrd);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.row {
    display: flex;
    justify-content: center;
}

