 .container {
      margin-top: 20px;
    }

    .card {
      width: auto;
      margin-bottom: 1rem;
      border: none;
      border-radius: 20% 20% 0 0;
    }

    .card a {
      text-decoration: none;
    }

    .card-img-top {
      width: 90px;
      height: 90px;
      border-radius: 20%;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      margin: 0 auto;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .card-title {
      color: rgb(32, 33, 36);
      font-size: .875rem;
      font-weight: 400;
      letter-spacing: .0178571429em;
      line-height: 1.25rem;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      display: -webkit-box;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-body {
      border: 0;
      color: inherit;
      font: inherit;
      font-size: 100%;
      margin: 0;
      padding: 0;
      vertical-align: baseline;
    }

    @media (max-width: 300px) {
      .card {
        width: calc(50% - 1rem);
      }
    }

    @media (min-width: 300px) {
      .card {
        width: calc(35% - 1rem);
      }
    }

    @media (min-width: 500px) {
      .card {
        width: calc(25% - 1rem);
      }
    }

    .footer {
      border-top: 1px solid rgba(0, 0, 0, 0.22);
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color: #ffffff;
      padding: 10px 0;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }

    .footer button {
      background: none;
      border: none;
      color: rgba(78, 78, 78, 0.93);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .footer button i {
      font-size: x-large;
    }

    .footer .active {
      font-weight: bold;
      color: #056449;
    }

    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    body {
      padding-top: 60px;
    }