header {
    background-color: var(--main-pink);
}

/* .about-hero {
    background: transparent;
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.about-hero-blurb {
    display: flex;
    flex-direction: column;
    align-items: center;
    top:50px;
    position: relative;
    margin-left: 10%;
    margin-right: 10%;
    z-index: 2;

}


.about-bg-video {
    position: relative;
    top: -700px;
    left: -700px;
    background-position: center;
    width: 100%;
    z-index:0;
}

.about-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-pink);
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: 1;

} */


.experience-blurb-wrapper {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
}

.experience-blurb {
    width:45%;
}



.team-container {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:100px;
    margin-bottom:100px;
    max-width:1500px;
}


  .team-member {
    padding: 20px;
    font-size: 30px;
    text-align: center;
  }

  .team-member h5 {
      font-size:18px;
      color:var(--main-dark);
  }

  .team-member p {
      font-size:14px;
  }

  .team-member img {
      max-width:225px;
      margin-bottom:20px;
      transition: .3s ease-in-out;
  }

  .team-member img:hover {
    transform: scale(1.05)
  }

  .team-color-overlay {
    position: relative;
    top: 0;
    left: 0;
    background-color: var(--main-pink);
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: 1;
  }

  



  @media only screen and (max-width: 1000px) {

    .experience-blurb-wrapper {
        flex-direction:column; 
    }
    
    .experience-blurb {
        width:100%;
        margin-top:25px;
        margin-bottom:25px;
    }

    .main-button {
        font-size:12px;
        border:4px solid;
    }
  }