/* img {
  pointer-events: none;
} */

body {
  font-family: 'Inter',Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1em;
  opacity: 0;
  transition: opacity 0.3s;
  padding-top: 6em;
}

nav {
  margin-top: 2em;
  /* margin-bottom: 2em; */
}

.filter-button {
  padding: 4px 8px;
  margin: 5px;
  border: none;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
}

.filter-button:hover {
  color: #a3a3a3;
}

.base-btn{
  color: #000000;
}

.base-btn:hover {
  color: #a3a3a3;
}


.back-btn {
  align-self: start;
  /* margin-bottom: 5px;
  padding: 4px 8px; */
  background-color: transparent;
  color: #000000;
  border: none;
  cursor: pointer;
  /* position: absolute; */
}

.back-btn:hover {
  color: #a3a3a3;
}


iframe { border: none; }

.tw-grid-item img
{
  transition: transform 0.3s;
}
.tw-grid-item:hover img
{
  transform: scale(1.01);
}

#portfolio-container
{
  display: flex;
  justify-content: center;
}

.project-gallery img {
  max-height: 38rem;
  transition: transform 0.3s;
}

.project-gallery img:hover {
  transform: scale(1.01);
}

/* Lightbox styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

footer {
  padding: 2em;
  text-align: center;
  /* position:fixed;
  bottom: 0; */
}

#lightbox-content{
  width: 80vw;
  height: 80vh;
  align-items: center;
  text-align: center;
}

.arrow {
  /* position: absolute;
  top: 50%; */
  color: #d2d2d2;
  cursor: pointer;
  
  /* background-color: rgba(0, 0, 0, 0.3); */
  padding: 2em;
}

/* .left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
} */

.arrow:hover {
  color: #fff;
}

.basic-page {
  max-width: 1000px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 64vh;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@layer utilities {
  .animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
  }
}