/* style.css */

/* Ensure there's some space below the navbar if needed */
body {
  margin-bottom: 50px;
}

/* Custom class to crop images to the top center */
.img-crop-top-center {
  object-fit: cover;       /* Ensures image fills the ratio container */
  object-position: 50% 0%; /* Positions the image so the top-center is visible */
  width: 100%;
  height: 100%;
}
