
#main-container main {
	padding: 10px;
	overflow-y: auto;
}

#main-container main p {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: auto;
	height: auto;
	margin: 0px;
	padding: 20px;
	color: white;
	font-size: 48px;
	font-style: italic;
	text-decoration: none;
	text-align: center;
	text-shadow: 1px 1px 3px white;
}

#main-container main #link-container {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	left: 0px;
	top: 0px;
	width: 100%;
	height: auto;
	margin: 40px 0px;
	padding: 0px;
}

#main-container main #link-container a {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	left: 0px;
	top: 0px;
	width: auto;
	height: 50px;
	margin: 0px 10px;
	padding: 0px 20px;
	color: white;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	background-color: #FF6347; /* Fallback for older browsers */
	background-color: var(--secondary-color);
	border-radius: 25px;
	outline: none;
}

#main-container main #link-container a img {
	height: 40px;
	margin: 5px 0px 5px 10px;
}

#main-container main #gallery {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 20px auto;
	padding: 0px;
}

#main-container main #gallery .carousel-control {
	position: absolute;
	display: inline-block;
	top: 0px;
	width: 50px;
	height: 100%;
	margin: 0px;
	padding: 0px;
	opacity: 0.5;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
}

#main-container main #gallery .carousel-control:hover {
	opacity: 1;
}

#main-container main #gallery .left {
	left: 0px;
	background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='26px' height='26px'%3E%3Cpath d='M 14.585938 3.585938 L 5.171875 13 L 14.585938 22.414063 L 17.414063 19.585938 L 10.828125 13 L 17.414063 6.414063 Z'/%3E%3C/svg%3E");
}

#main-container main #gallery .right {
	right: 0px;
	background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='26px' height='26px'%3E%3Cpath d='M 11.414063 3.585938 L 8.585938 6.414063 L 15.171875 13 L 8.585938 19.585938 L 11.414063 22.414063 L 20.828125 13 Z'/%3E%3C/svg%3E");
}

#main-container main #gallery .carousel-inner {
	position: relative;
	display: inline-block;
	left: 50px;
	top: 0px;
	width: calc(100% - 100px);
	height: calc(100% - 50px);
	margin: 0px;
}

#main-container main #gallery .item {
	position: absolute;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	background-image: none;
	z-index: 10;
	transform: translate(-1000%, 0);
	transition: transform 0.6s ease-in-out;
}

#main-container main #gallery .item.active {
	position: relative;
	transform: translate(0, 0);
}

#main-container main #gallery .item img {
	position: relative;
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	object-fit: contain;
}

#main-container main #gallery .item .carousel-caption {
	position: absolute;
	display: block;
	left: 0px;
	bottom: 10px;
	width: 100%;
	color: white;
    text-align: center;
    text-shadow: 0px 2px 2px black;
}

#main-container main #gallery .carousel-indicators {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 50px;
	margin: 0px;
	padding: 0px;
	text-align: center;
	list-style: none;
}

#main-container main #gallery .carousel-indicators li {
	width: 12px;
	height: 12px;
	margin: 1px;
	cursor: pointer;
	background-color: black;
	border: 1px solid #666666;
	border-radius: 6px;
}

#main-container main #gallery .carousel-indicators .active {
	background-color: #666666;
}