* {
	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;
 }

body {
	background-color: #ffffff;
	background-image: url('sky_transp.png');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#wheel {
	max-width: 45%;
	margin: auto;
	padding-top: 20px;
}

#title {
	color: white;
	font-family: 'Beau Rivage', cursive;
	font-size: 5em;
	font-weight: 500;
	text-shadow: 0.10em 0.08em 10px black;
}

section {
	width: 100%;
	position: relative;
	justify-content: center;
}

/* Input box red highlight CSS */
input[type=text], input[type=email], textarea.form-control {
  transition: all 0.30s ease-in-out; 
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
} 

input[type=text]:focus, input[type=email]:focus, textarea.form-control:focus {
  box-shadow: 0 0 5px rgba(249, 37, 55, 1);
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(249, 37, 55, 1);
}

label.textlab {
	padding-left: 0px;
}

#email_address_error {
	color: red;
}

.form-control {
  max-width: none !important/* override the inline style */
}

.btn {
	border-radius: 0;
}

.btn:hover {
	color: red;
	background-color: white;
	box-shadow: 0 0 5px rgba(249, 37, 55, 1);
	border: 1px solid rgba(249, 37, 55, 1);
}

#controller {
	height: 250px;
	margin: 0 auto;
	padding-bottom: 50px;
}

/* 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;
}


/* media queries / repsonsiveness code */

@media 

