.carousel-inner,
.carousel-item {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height:100vh;
    width: 100vw;
    max-height:1080px;
    max-width:1920px;
}

.carousel-item p {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;            /* ensures h1 is above the image */
    color: white;           /* fallback in case text-white class isn't enough */
    margin: 0;              /* remove default margin */
    pointer-events: none;   /* optional: makes sure clicks go through the text */
    user-select: none;      /* optional: disables text selection */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;               /* larger width */
  height: 50px;              /* larger height */
  background-size: 100%, 100%; /* make background fill fully */
  filter: drop-shadow(0 0 2px black); /* optional: add shadow for thickness */
  background-image: none;    /* remove default SVG */
  border: solid white 5px;   /* thick white border to create arrow shape */
  border-width: 0 5px 5px 0;
  padding: 10px;
  transform: rotate(135deg); /* arrow shape */
}

.carousel-control-prev-icon {
  transform: rotate(135deg);
}

.carousel-control-next-icon {
  transform: rotate(-45deg);
}