@charset "UTF-8";

.tabs {
      display: flex;
      justify-content: space-evenly;
      position: relative;
      top: 0.5rem;
}
.tab_button {
      width: auto;
      height: 8rem;
      border: #ABE8C9 solid 0.5rem;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      background-color: #ABE8C9;
      padding: 0.5rem 2.5rem;
      z-index: 10;
      cursor: pointer;
}
.tab_button.active {
      background-color: #ffffff;
      border-bottom: #ffffff;
      z-index: 0;

}
.tab_content {
      display: none;
}
.tab_content.active {
      display: grid;
      align-items: baseline;
      gap: 2rem;
      border: #ABE8C9 solid 0.5rem;
      border-radius: 1rem;
}
.gallery_item {
      text-align: center;
      padding: 10%;
}
.gallery_item img {
      max-width: 100%;
      height: auto;
      border-radius: 1rem;
}
.pagination {
      text-align: center;
      margin-top: 2rem;
}
.pagination button {
      background: #ffffff;
      border: 1px solid #ffffff;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem;
      cursor: pointer;
}
.pagination button.active {
      border-bottom: #ABE8C9 solid 0.3rem;
}

@media screen and (min-width: 890px) {
      .tab_content.active {
        grid-template-columns: repeat(3, 1fr);
      }
}
@media screen and (max-width: 889px) {
      .tab_button{
            padding: 0.5rem 1.5rem;;
      }
      .tab_content.active {
        grid-template-columns: 1fr;
      }
}