table,th,td {
  border : 1px solid black;
  border-collapse: collapse;
}
th,td {
  padding: 5px;
}

#alphBtn, #allBtn {
color: #DAA520;
}

#projects {
  color: #DAA525;
}

.projectGrid {
  display: grid;
  width: 100%;
  margin: auto;
  gap: 10px;
  /* animation: fadeIn 2s; */
  /* -webkit-animation: fadeIn 2s; */
}

.projectWrapper {
  grid-template-areas: "text slideshow"
  "text gallery";
  grid-template-columns: 50% auto;
}
/* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
@media screen and (min-width:320px) and (max-width: 1025px) {
  .selector, .sortingSelector {
    font-size: 24px !important;
  }
  
  .projectGrid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .projectOverlay span {
    font-size: 50px;
  }
}

/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) { 
  .projectGrid {
    grid-template-columns: repeat(6, 1fr);
  }
}


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  width: auto;
  gap: 10px;
  margin: auto;
}

/* @media screen and (max-width: 700px) {
  .projectGrid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .projectIcon .projectLocation {
    display: inline-block;
  }
  
  .projectWrapper {
    grid-template-areas: "slideshow"
    "gallery"
    "text";
    margin: auto;
    grid-template-columns: 1fr;
  }
} */


.projectWrapper {
  display: grid;
  height: auto;
}

.projectText {
  grid-area: text;
  padding-right: 20px;
}

.projectText p {
  text-align: justify;
  padding: 5px 10px;
}

.slideshow {
  grid-area: slideshow;
  background-color: yellow;
  width: auto;
  padding-bottom: 10px;
}

.slideshow img {
  width: 100%;
  height: 25%;
  object-fit: cover;
  object-position: 0px 0px;
  margin: auto;
}

.gallery img {
  background-color: pink;
  width: 90px;
  height: 90px;
}

.projectTitle {
  font-size: 1.5em;
  padding: 5px 10px;
}