nav .navbar-brand
{
    /* size for brand */
    font-size: xx-large;

}

main .form-control
{
    /* center form controls */
    display: inline-block;

    /* override Bootstrap's 100% width for form controls */
    width: auto;
}

main
{
    /* scroll horizontally as needed */
    overflow-x: auto;

    /* center contents */
    text-align: center;
}

main img
{
    /* constrain images on small screens */
    max-width: 100%;
}

.table {
    color: var(--bs-white);
}
/* body { */
    /* padding-top: 100px; */
    /* background-color: rgb(157, 180, 143) */
/* } */

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);

}

a {
  color: #17a2b8;
}

.img-thumbnail {
	padding: .25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: .25rem;
	max-height: 200px;
	max-width: 200px;
	height: auto;
}

.img-profile {
	max-height: 300px;
	max-width: 300px;
	height: auto;
}
/*.img-carousel {
	padding: .25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: .25rem;
	max-height: min(100%, 500px);
	max-width: min(100%, 500px);
	height: auto;
} */

.carousel {
    overflow: hidden;
    padding-bottom: 4rem;
}

.carousel-caption { top: 100%; }
.carousel-inner { overflow: visible; }
.carousel-control-next, .carousel-control-prev { bottom: 4rem; }
.carousel-item img {
  object-fit: cover;
  object-position: center;
  height: 60vh;
  overflow: hidden;
}
.carousel-indicators {
    position: relative;
    top: 100%;
}
.carousel-indicators .active {
     background-color: #f00;
}