.carousel {
  margin: 60px auto;
  position: relative;
  width: 70%;
  overflow: hidden;
}
.carousel-inner {
  position: relative;
  width: 100%;
  display: flex;
}
.carousel-item {
  min-width: 100%;
  transition: transform 0.6s ease-in-out;
}
.carousel-item img {
  width: 100%;
  display: block;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}
.carousel-control-prev {
  left: 10px;
}
.carousel-control-next {
  right: 10px;
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.carousel-indicators button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}
.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}
.active {
  z-index: 10;
}
body {
  background-image: url(images/wallpaper.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
