/* CSS Variables: */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	 --clr1: #4d90fb;
	 --clr2: gold;
	 --clr3:  red;
}

::-webkit-scrollbar {
	width: 20px;
}

::-webkit-scrollbar-track {
	background: white;
	/*border-radius: 50px;*/
}

::-webkit-scrollbar-thumb {
	background: gold;
	border-radius: 50px;
}

html, body {
	height: 100%;
}

/* navigation CSS */
.navbar-brand {
	margin-left: auto;
	margin-right: auto;
}

.navbar-toggler {
	margin-left: auto;
	margin-right: auto;
}

.navbar {
	background-color: var(--clr1);
	border-bottom: 5px solid gold;
	z-index: 99;
	box-shadow: 0px 15px 10px gray;
}

.navbar h1 {
	color: white;
	font-family: 'Beau Rivage', cursive;
	text-shadow: 0.10em 0.08em 10px black;
} 

.nav-item a:hover {
	color: black;
	text-decoration: underline;
	transition: opacity 0.15s ease-in-out;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0.125em;
  }

/* MAIN CONTENT CSS*/

body {
	background-color: #ffffff;
	background-image: url('sky_transp.png');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* bg image headline text */
.openday {
	position: absolute;
	text-shadow: 0.10em 0.08em 10px black;
	font-size: 5vw;
	top: 3.5rem;
}

.sailaway {
	position: absolute;
	text-shadow: 0.10em 0.08em 10px black;
	font-size: 4vw;
	bottom: 4rem;
}

/* icons */
#anchor {
	height: 100px;
	margin: auto;
	padding-top: 20px;
}

#wheel {
	max-width: 45%;
	margin: auto;
	padding-bottom: 20px;
}

/* CSS FOR FOOTER SECTION */
/* SVG background */
#svg-background {
	z-index: -100;
	margin-bottom: 0;
}

footer {
	width: 100%;
	color: white;
	text-align: center;
	position: absolute;
	margin-bottom: 0;
}

footer #below-border {
	background-image: linear-gradient(to right, #002bdcff, #002bdc88, #32ded466, #32ded488);
	padding-top: 25px;
	border-top: 5px solid gold;
	z-index: 1000;
} 

footer #weblink {
	color: white;
	text-decoration: none;
}

footer #weblink:hover {
	color: black;
} 

#footer-menu {
	justify-content: center;
	padding-bottom: 1rem;
}

#footer-menu a {
	color: white;
}

#footer-menu a:hover {
	color: black;
	text-decoration: underline;
	transition: opacity 150ms ease-in-out;
}