body {
	background-color: #071952;
	max-height: 100vh;
}
.marquee-container {
	overflow: hidden;
	white-space: nowrap;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

.marquee {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
	animation: marquee 15s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

#carouselImageCaptions .carousel-item {
	height: 70vh;
}

#carouselImageCaptions .carousel-item img {
	object-fit: cover;
	height: 100%;
}

table tr td,
table tr th {
	background-color: rgba(0, 0, 0, 0) !important;
}
table th,
table td {
	color: white !important;
}
