.flip-card {
    margin: 1rem;
    background-color: transparent;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2%;
  }
  
  .flip-card-back {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transform: rotateY(180deg);
  }
  
  .info-row-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    height: 50%;
    padding: 5%;
  }
  
  .info-row {
    display: grid;
    grid-template-columns: 20% 10% 70%;
    grid-template-areas: "icon . info";
  }
  
  .icon {
    color: #027bce;
  }
  
  .info {
    grid-area: info;
    align-self: center;
    text-align: left;
    font-size: 1em;
  }
  
  .info a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 1em;
    align-self: center;
  }
  
  .info a:hover {
    text-decoration: underline;
  }
  
  .all-employees {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10%;
  }
  
  .employee-image-container {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-position: center center;
    background-size: 200%;
  }
  
  .employee-title {
    font-size: 1.5em;
    color: #000000;
  }
  
  .employee-description {
    align-self: start;
  }
  
  