h1 {
    text-align: center;
  }
  .h1-projects {
    font-family: "inconsolata", Arial, Helvetica, sans-serif;
  }
  .showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 5.85rem;
  }
  .showcase-projects {
    display: grid;
    justify-items: center;
    row-gap: 20px;
  }
  .showcase-card {
    display: flex;
    flex-direction: row;
    background-color: var(--card-bg-color);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .showcase-card:hover {
    /* box-shadow: 1px 1px 10px var(--showcase-card-hover-shadow-color); */
  }
  .showcase-card h2 {
    font-size: 2rem;
    font-weight: normal;
  }
  .showcase a {
    align-self: flex-start;
  }
  .showcase-card img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .showcase-card__title {
    margin: 10px 0;
  }
  .showcase-card__description {
    color: var(--underline-contrast-font-color);
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .card-items {
    display: flex;
    flex-direction: column;
  }
  
  /* tablet */
  @media screen and (min-width: 768px) {
    .showcase-projects {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      justify-items: initial;
    }
  }
  
  /* small laptop */
  @media screen and (min-width: 1024px) {
    .showcase-projects {
      grid-template-columns: repeat(6, 1fr);
      column-gap: 40px;
      justify-items: initial;
    }
    .showcase-card:first-of-type {
      grid-column: 2 / 4;
    }
    .showcase-card:nth-of-type(2) {
      grid-column: 4 / 7;
    }
    .showcase-card:last-of-type {
    }
  }