#project-storage {
  display: none;
}
#project-storage-hardcoded {
  display: none;
}

.virtual-carousel-slide {
  border: 1px solid purple;
  display: flex;
  gap: 2rem;
  max-height: 100px;
  overflow: scroll;
}

.virtual-carousel-slide * {
  display: none;
}

.virtual-project-title {
  display: flex !important;
}

#infinite-carousel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  width: 100%;
  height: 100%;
  position: relative;

  overflow: hidden;
}

.containerForItems {
  /* position: relative; */
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  /* position: absolute; */
  z-index: 0;

  gap: 25px;
  /* gap: 0px; */

  /* This width determines how much the adjacent slides will be visible */
  width: 500%;
  /* width: 100%; */
  height: 100%;
  /* height: 100%; */
  /* height: fit-content; */
}

.item-container {
  position: relative;
  /* height: 90%; */
  height: 100%;
  width: 100%;
}

.item-container:hover {
  cursor: pointer;
}

.item {
  position: relative;
  width: 100%;
  height: 100%;
}

.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.videoOrCanvas {
  position: relative;
  width: 100%;
  height: 100%;
}

.item-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none; /* allows interaction with video underneath */

  /* Gradient for all four sides */
  background: 
    /* Top edge gradient */ linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9) 0,
      transparent 1.5%
    ),
    /* Right edge gradient */
      linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 25%),
    /* Left edge gradient */
      linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 25%),
    /* Bottom edge gradient */
      linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 25%);
}
/*  */

/* .item-content img {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
} */

.videoOrCanvas video {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.carousel-buttons {
  position: absolute;
  display: flex;
  width: 100%;
  padding: 2%;
  justify-content: space-between;
  background-color: none;
  background: none;
  object-fit: contain;
  pointer-events: none;

  z-index: 16;
}
.carousel-buttons:hover {
  cursor: auto;
}

.prev-btn,
.next-btn {
  pointer-events: auto;
  background-color: none;
  background: none;
  padding: 2rem;
  border: none;
  position: relative;
  display: flex;
}
.prev-btn:hover,
.next-btn:hover {
  cursor: pointer;
  opacity: 0.5;
  filter: blur(2px);
  transition: opacity 0.2s ease-out, filter 0.5s ease-out;
}

.prev-btn img,
.next-btn img {
  width: 2rem;
}

#project-title {
  font-family: "fust";
  position: absolute;
  font-size: 12vw;
  bottom: 1rem;
  color: transparent;
  text-shadow: 0 0 0.8px #efe9db, 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 0.9;
  font-weight: bold;
  letter-spacing: 1px;

  width: 100%;
  text-align: center;
}
