body {
	font-family: 'Bitter', serif;
	padding-top: 56px; /* height of the navbar on smaller screens */
}

.carousel-item {
    height: 60vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.card-borderless {
  border: none;
  box-shadow: none;
}

/* make background image darker */
.carousel-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.carousel-caption {
    z-index: 3;
    /* rest of your styles */
}

.card-borderless img {
  max-width: 70vw; /* 80% of viewport width */
  max-height: 200px; /* Max height of 300px */
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.background-grey {
	background-color: #eeeeee;
}

.card-3 {
	margin-bottom: 5px;
	background-color: #eeeeee;
}

.card3-img-container {
  max-width: 100%;
  max-height: 150px;
  overflow: hidden;
}

.card3-img {
  width: 100%;
  height: auto;
}

.button1 {
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 10px; /* adjust for desired roundness */
  padding: 10px;
  transition: all 0.3s ease; /* for smooth transition */
  width: auto;
  font-weight:bold;
}

.button1:hover {
  background-color: black;
  color: white;
  border-color: white;
}

.card-title1 {
	padding-top: 10px;
	padding-left: 10px;
}

