.logo {
	height: 60px;
	margin-right: 10px;
	color: white;
}

.navbar {
	background-color: #042d3f;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.navbar-toggler-icon {
	color: red;
}

.custom-toggler.navbar-toggler {
	border-color: #e16032;
}

.footer {
	background-color: #042d3f;
	color: white;
	position: fixed;
	bottom: 0;
	width: 100%;
}

html {
	font-family: sans-serif;
	scroll-snap-type: mandatory;
	scroll-snap-points-y: repeat(100vh);
	scroll-snap-type: y mandatory;
}

.section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0; 
	transition-property: opacity; 
	transition-duration: 1s; 
	background-color: rgba(255, 255, 255, 0.8);
	scroll-snap-align: start;
	padding: 1rem;

}

.section.is-visible {
	opacity: 1; 
}

.section h2 {
	margin-bottom: 20px;
	margin-top: 10px
}
.section p {
	max-width: 600px;
	float: center;
	font-weight: bold;

}

.section img {
	max-width: 300px; 
	max-height: 200px; 
	float: center;
}

.nav-link.active {
	font-weight: bold;
	text-decoration: underline;
	text-decoration-thickness: 0.2rem;
	text-underline-offset: 6px;
	text-decoration-color: #e16032;
}

#myVideo {
	position: fixed; 
	right: 0;
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	z-index: -1;
}