html{
	/*Varables*/
	--Primary-Color : rgb(11, 14, 19);
	--OutLine-Color : rgb(36, 39, 44);
	--Text-Color: white;
	/*From fonts.google.com*/
	font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 250;
 	font-style: normal;
 	font-size: 20px;
}

body{
	margin: 0;
	background-color:  var(--Primary-Color);
}
/* From https://www.w3schools.com/*/
/* Hides Scroll bar */
body::-webkit-scrollbar {
  display: none;
}

::selection{
	background-color: rgb(46, 57, 74);
}

/*------------------- Text Style -------------------*/

p{
	color: var(--Text-Color);
	margin: 0;
	padding: 0.5em;
}

.title-style{
	font-size: 50px;
	font-weight: 700;
	padding-bottom: 0;
	padding-top: 1em;
}

.header-style{
	font-size: 30px;
	font-weight: 500;
	padding-bottom: 0;
	padding-top: 1em;
}

.small-text{
	font-size: 12.5px;
	font-weight: 200;
}


mark{
	background-color: transparent;
	font-weight: 350;
	color: rgb(244, 244, 99);
}

b{
	font-weight: 500;
}

/*--------------------- Header ---------------------*/

#header{
	height: 50vh;
	background-color: transparent;
	text-align: center;
	color: var(--Text-Color);
	position: relative;
}

.header-text{
	width: 100%;
	font-size: 50px;
	font-weight: 500;
	/* Centers the text in the image	*/
	position: absolute;
	top: 37.5%;
}

#header>img{
	width: 100%;
	height: 50vh;
	object-fit: cover;
}

#overlay{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0%;
}

/*--------------------- Content ---------------------*/

#content{
	width: 75vw;
	min-height: 60vh;
	height: fit-content;
	background-color: var(--Primary-Color);
	border-style: none solid none solid;
	border-width: 1px;
	border-color: rgb(36, 39, 44);
	margin: 0 12.5vw;
	padding: 0 50px;
	padding-bottom: 100px;
}
.content-button{
	border-style: solid;
	border-width: 1px;
	border-color: var(--OutLine-Color);
	border-radius: 5px;
	/*Centers items inside of div*/
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin-bottom: 2%;
}

.content-button:hover{
	background-color: var(--OutLine-Color);
	font-weight: 400;
	text-decoration: underline;
	color: var(--Text-Color);
}

.button-logo{
	height: 50px;
	padding: 25px 0;
}

.header-logo{
	height: 75px;
}

.content-container{
	border-style: solid;
	border-color: transparent;
	width: 96%;
	height: fit-content;
	margin: 0 2%;
	position: relative;
	top: 25px;
}

.image-container{
	height: 250px;
	border-style: solid;
	border-width: 1px;
	border-color: var(--OutLine-Color);
	border-radius: 5px;
	margin-bottom: 0.5%;
	padding: 20px;
/*From https://www.geeksforgeeks.org*/
/* Enables Scrolling inside of div */
	overflow-x: auto; 
	overflow-y: hidden;
/*From https://developer.mozilla.org*/
	scrollbar-color: var(--OutLine-Color) transparent ;
	display: flex;
}

.image-container > img{
	height: 100%;
	margin: 2px;
}

/*----------------- Navagation Menu -----------------*/

#navagation-menu{
	width: 100%;
	height: fit-content;
	background-color: var(--Primary-Color);
	position: sticky;
	top: 0;
	z-index: 1;
	display: flex;
	border-bottom: solid;	
	border-width: 1px;
	border-color: var(--OutLine-Color);
}

.menu-button{
	width: 25%;
	display: inherit;
	padding: 1em 2em;
	color: var(--Text-Color);
	/*Puts items next to eachother, and centered in the div*/
	display: flex;
	justify-content: center;
	text-decoration: none;
	border-width: 2px;
	border-bottom: solid;
	border-color: transparent;
	align-items: center;
}

.menu-button:hover{
	background-color: var(--OutLine-Color);
}

.icon{
	width: 30px;
	margin: 0 10px;
}

.selected-button{
	width: 25%;
	display: inherit;
	padding: 1em 2em;
	color: var(--Text-Color);
	/*Puts items next to eachother, and centered in the div*/
	display: flex;
	justify-content: center;
	text-decoration: none;
	border-width: 2px;
	border-bottom: solid;
	border-color: transparent;
	align-items: center;
	font-weight: 500;
	text-decoration: underline;
}

.selected-button:hover{
	background-color: var(--OutLine-Color);
}