.espLogo{
  display: block;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.topnav {
  background-color: rgb(19, 140, 183);
  overflow: hidden;
  margin-left: 125px;
  max-width: 1400px
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 12px 15px;
  text-decoration: none;
  font-size: 17px;
  margin-left: 50px;
  margin-right: 50px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: rgb(159, 46, 138);
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: rgb(53, 128, 179);
  color: white;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between the cards */
    justify-items: center; /* Center the cards */
    padding: 20px; /* Padding around the grid */
  }

  @media (max-width: 768px) {
    .profile-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .profile-grid {
      grid-template-columns: 1fr; /* 1 column on very small screens */
    }
  }

  .body{
    background-color: rgba(99, 99, 99, 0.076);
  }

  .meet{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    text-align: center;
    text-decoration: underline;
    color: rgb(159, 46, 138);
    margin-top: 55px;
  }

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 200px;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: rgb(19, 140, 183);
    color: white;
    transform: rotateY(180deg);
  }

