

/**/
.container {
  max-width: 900px;
}

.carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 15px 20px;
  transition: opacity 0.5s ease;
}

.carousel-caption h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-indicators [data-bs-target] {
  background-color: #333;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #007bff;
}

@font-face {
    font-family: 'RubikDistressed-Regular';
    src: url('../fonts/RubikDistressed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

h1{
  text-align: center;
  margin: 0.5em;
  font-family: 'RubikDistressed-Regular', sans-serif;
}