@charset "UTF-8";
.hoverImage {
  transition: 0.5s;
  filter: drop-shadow(0px 0px 10px black);
  -webkit-filter: drop-shadow(0px 0px 10px black);
  -moz-filter: drop-shadow(0px 0px 10px black);
}
.hoverImage:hover {
  filter: drop-shadow(0px 0px 10px rgb(239 68 68 / 1));
  -webkit-filter: drop-shadow(0px 0px 10px rgb(239 68 68 / 1));
  -moz-filter: drop-shadow(0px 0px 10px rgb(239 68 68 / 1));
}
.responsive {
  width: 100%;
  height: auto;
  max-width: 900px !important;
  max-height: 6000px !important;
}
.mini-logo {
  height: auto; 
  width: 100%; 
  max-width: 100px;
  filter: drop-shadow(0px 0px 3px rgb(239 68 68 / 1));
  -webkit-filter: drop-shadow(0px 0px 3px rgb(239 68 68 / 1));
  -moz-filter: drop-shadow(0px 0px 3px rgb(239 68 68 / 1));
}
.mini-logo:hover {
  filter: drop-shadow(0px 0px 3px gray);
  -webkit-filter: drop-shadow(0px 0px 3px gray);
  -moz-filter: drop-shadow(0px 0px 3px gray);
}
.bg-black-alt  {
  background:black;
  background-image: url(/img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.text-black-alt  {
  color:black;
}
.border-black-alt {
  border-color: black;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: white transparent;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: rgb(75 85 99 / 1);
    border-radius: 5px;
    border: 5px solid transparent;
  }
  #pagination {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #pagination a {
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    margin: 2px 2px 2px 2px;
    color: rgb(209 213 219 / 1);
    border: 2px solid rgb(75 85 99 / 1);
    display: flex;
    padding: 3px 3px;
    border-radius: 0.5rem;
    width: 40px;
    height: 30px;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    cursor: pointer;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #pagination a:hover {
    color: rgb(239 68 68 / 1);
    border-color: rgb(239 68 68 / 1);
    cursor: pointer;
  }
  .active {
    color: rgb(239 68 68 / 1) !important;
    border-color: rgb(239 68 68 / 1) !important;
  }


  
  .bg-gray-900 {
    background-color: #191919 !important;
  }
  .container {
    opacity: 0.8;
  }