.carousel {
  height: 600px;
  width: 600px;
}

.carousel img {
  height: 600px;
  width: 600px;
  object-fit: cover;
}

.carousel p {
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

div.carousel-caption {
  right: 5%;
  left: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100); /* This will make them black */
}

@media (max-width: 600px) {
  .carousel {
    height: 300px;
    width: 300px;
  }

  .carousel img {
    height: 300px;
    width: 300px;
  }

  .carousel p {
    color: white;
    font-size: 10px;
    line-height: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
  }

  div.carousel-caption {
    padding-bottom: 0px;
  }
}

