* {
	margin: 0;
	padding: 0;
}

/* CSS Variables: */
: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;
}

/* 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;
}

.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;
  }

html, body {
	height: 100%;
}
/*
.bg-img {
 	background-image: url("sky_transp.png");
 	height: 860px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
} */

#gallery_head {
	color: black;
	font-family: 'Beau Rivage', cursive;
	font-size: 5em;	
	font-weight: 500;
	text-shadow: 0.10em 0.08em 10px black;
}

#anchor {
	height: 100px;
	width:  auto;
	margin: auto;
	padding-top: 20px;
}

.lmbcblu {
	background-color: var(--clr1);
}

img {
	border: 3rm solid red; 
	width: 100%;
}

.textbox {
	position: relative;
	text-align: center;
	background-color: #4d90fb; 
}

.centred {
	position: absolute;
}

/* Responsive layout 2 columns instead of 4 columns */
@media screen and (max-width:  800px) {
	.column {
		flex: 50%;
		max-width: 50%;
	}
}

/* Respsonive layout - 2 columns stack on top instead of 2 next to each other */
@media screen and (max-width:  600px) {
	.column {
		flex: 100%;
		max-width: 100%;
	}
}

/* CSS for Footer section */
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 
