/* CSS for new Arolos splash page. File is index.html. Styling elements for titles, blurb and quick links menu */


body {
	background: #587858;
}


/* Sticky Header Navbar */
	.view {
		position: relative;
	}
	nav.deep-green-custom {
		background-color: #587858;
		color: #9ABB93;
	}
	nav.deep-green-custom a {
		color: #9ABB93;
	}
	nav.navbar {
		box-shadow: none;
		padding: 0;
		width: 100%
	}
	.navbar-nav {
		align-items: stretch;
		display: flex;
		justify-content: space-evenly;
		width: 80%;
	}
	.navbar li {
		padding: 15px;
		transition: background 0.3s;
	}
	.navbar li:hover {
		background-color: #14231c;
	}
	.navbar a.nav-link {
		padding: 0;
	}
	.nav-pills .active {
		background-color: #4E694A !important;
	}


/* Body Content */
	div.container {
		background-color: #e9e3db;
		height: 100%;
		margin: 0;
		padding: 0;
		width: auto;
	}


/* Footer */
	footer.deep-green-custom {
		background-color: #587858;
		color: #9ABB93;
		width: 100%;
	}
	footer.deep-green-custom a {
		color: #9ABB93;
	}
	div.footer-copyright {
		font-size: 1.5vmin;
	}
	div.footer-copyright p {
		margin-bottom: 5px;
	}
