@charset "UTF-8";
/* CSS Document */


/* BEGIN BODY */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
	
body {
		font-family: 'Source Sans Pro', sans-serif;
		font-size: 1.0rem;
		font-weight: 400;
		line-height: 1.5rem;
		margin: 0px 0px;
		min-height: 100vh; /* Puts footer of bottom of screen */
		display:flex; 	/* Puts footer of bottom of screen */
  		flex-direction:column;	/* Puts footer of bottom of screen */
		background-attachment: fixed;
		background-image: url("images/UNKNOWN.jpg");
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: cover;
}


/* LIGHT-MODE START */
body.Light-Mode {
  color: #000000;
  background: #1F4042;
}
.Light-Mode header{
  background: #554D38;
}
.Light-Mode footer{
  background: #CAC7B8;
}
.Light-Mode .nav-menu{
	background: #554D38;
}
.Light-Mode main{
	background: #B4B09F;
	border: 7px solid #65675C;
}
.Light-Mode a {
    color: #000000;
    text-decoration: none;
}
.Light-Mode a:visited {
	color: #000000;
	text-decoration: none;
}
.Light-Mode a:hover {
	color: #554D38;
	text-decoration: none;
}
.Light-Mode a:active {
	color: #65675C;
	text-decoration: none;
}
/* LIGHT-MODE END */

/* DARK_MODE START */
body.Dark-Mode {
  color: #494848;
  background: #000000;
}
.Dark-Mode header{
  background: #554D38;
}
.Dark-Mode footer{
  background: #000000;
}
.Dark-Mode .nav-menu{
	background: #554D38;
}
.Dark-Mode main{
	background: #000000;
	border: 7px solid #65675C;
}
.Dark-Mode a {
    color: #B8B4A1;
    text-decoration: none;
}
.Dark-Mode a:visited {
	color: #B8B4A1;
	text-decoration: none;
}
.Dark-Mode a:hover {
	color: #989276;
	text-decoration: none;
}
.Dark-Mode a:active {
	color: #B8B4A1;
	text-decoration: none;
}
/* DARK-MODE END */




header{
    border-bottom: 0px solid #CAC7B8;
	z-index: 10;
	margin: 0 auto;
	min-height: 80px;
}

main{
	margin: 10px 10px;
	z-index: 1;
	padding: 10px 5px 10px 5px;
}

footer{
	border-top: 3px solid #65675C;
	z-index: 2;
	padding: 1px 5px 1px 5px;
	margin-top: auto; /* Puts footer on bottom of screen with stuff in body*/
}

ol {
	list-style-type: disc;
	list-style-position:inherit;
	margin: 0 20px;
}

li {
    	list-style: none;
}


.title1 {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 2.1rem;
}

.title2 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.0rem;
}

.title3 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.9rem;
}

.title4 {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.8rem;
}

.title5 {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.7rem;
}

.subtitle1 {
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 2.1rem;
}

.subtitle2 {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.0rem;
}

.subtitle3 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.9rem;
}

.subtitle4 {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
}

.subtitle5 {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.7rem;
}

.blackborder{

	padding: 5px;
	background: #000000;
}

.padding1{
	padding-left: 1px;
	padding-right: 1px;
}

.padding2{
	padding-left: 2px;
	padding-right: 2px;
}

.padding3{
	padding-left: 3px;
	padding-right: 3px;
}

.padding4{
	padding-left: 4px;
	padding-right: 4px;
}

.padding5{
	padding-left: 5px;
	padding-right: 5px;
}

/* END BODY */

/* EXTRAS */

/* Back to top */

#totop {
  display: inline-block;
  background-color: #554D38;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 60px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
#totop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 35px;
  color: #fff;
}
#totop:hover {
  cursor: pointer;
  background-color: #655B42;
}
#totop:active {
  background-color: #534B36;
}
#totop.show {
  opacity: 1;
  visibility: visible;
}

/* End Back to top */

/* END EXTRAS */
