:root {
	--highlight-color: #00ff12;
}

html {
	font-size: 16px;
	/*scroll-behavior: smooth;*/
}


* {
	padding: 0px;
	margin: 0px;
	font-family: 'Roboto Condensed', sans-serif;
	text-decoration: none;	
	list-style-type: none;
}

body {
	background-color: black;
	color: white;
	font-size: 1rem;
	line-height: 1.3;
	width: 100%;
	height: 100%;
}

a {
	color: rgb(255,255,255);
	transition: opacity 0.25s;
}

a:hover {
	opacity: 85%;
}

h1 {
	font-size: 2.2rem;
	font-weight: 550;
}

h6 {
	font-size: 1rem;
}


p a {
	color: var(--highlight-color)
}


/*--HEADER--*/
#header {
	z-index: 1;
	width: 100%;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-block {
	padding-top: 12;
	padding-bottom: 12;
	padding-left: 20;
	padding-right: 20;
}

.header-nav-button {
	font-size: .90rem;
	padding-left: 12px;
	font-weight: 700;
}



/*--MAIN PAGE PROJECT GALLERY--*/
#main-project-gallery-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.main-project-gallery-text-container {
	display: block;
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding-left: 80px;
	padding-right: 80px;
}

.main-project-gallery-project-container {
	display: block;
	height: 500px;
}

.main-project-gallery-project-container:hover {
	visibility: visible;
}

.main-project-gallery-img {
	/*width: 800px;*/
	height: 100%;
	object-fit: cover;
	overflow: hidden;
	/*background-color: rgb(0,0,0);*/
}



/*--PROJECT PAGE IMAGE GALLERY--*/
#project-gallery-container {
	height: 100%;
	padding-left: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.project-gallery-spread img {
	padding-right: 20px;
	height: 85%;
	object-fit: contain;
	border-style: none;
	border-width: 1px;
	border-color: rgb(200,200,200);
}



/*--TYP. TEXT PAGE--*/
#text-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

.text-container-centered {
	align-items: center;
	text-align: center;
}

.text-container-scrollable {
	align-items: flex-start;
	text-align: left;
}

#text-text {
	width: 650px;
	padding-top: 100px;
	padding-bottom: 100px;
}


/*--FOOTER--*/
#footer {
	color: rgb(100,100,100);
	font-size: .8rem;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

::-webkit-scrollbar {
	height: 12px;
	width: 12px;
}

::-webkit-scrollbar-track {
	background: black;
}

::-webkit-scrollbar-thumb {
	background: white;
}


@media only screen and (max-device-width: 600px) {
	html {
		font-size: 32px;
	}

	h1 {
		font-size: 1.75rem;
	}

	#header-logo {
		height: 24px;
	}

	.main-project-gallery-project-container {
	display: block;
	height: 700px;
	}

	.project-gallery-spread img {
		height: 80%;
	}
}