body {
  background-color: #121212;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.hero-carousel img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.6);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
}
.hero-content p {
  font-size: 1.5rem;
}
.section {
  padding: 60px 0;
}
.card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card a:hover img {
  transform: scale(1.05);
}
.card-body a {
  font-weight: 600;
  text-decoration: none;
}
.card-body a::after {
  content: ' \f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 0.5rem;
}
@media (max-width: 800px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}