html {
	scroll-behavior: smooth;
}
html, body {
	color: white;
/*	background-color: #070e07;*/
	background-color: #111111;
	font-family: 'Karma', serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

/* Typography */

h1, h2, h3, h4, h5, h6, .btn {
	font-family: 'Josefin Sans', sans-serif;
}

h1 {
	font-size: 2.25rem;
}
h2 {
	font-size: 2.125rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	line-height: 1.25rem;
}

h1 span,
h2 span,
h3 span,
h4 {
	display: block;
	font-weight: normal;
	font-size: .925rem;
	text-transform: uppercase;
}

h1 span,
h3 span {
	padding-top: 18px;
	line-height: 1.5rem;
}

h1.section-break,
h2.section-break {
	border-bottom: 1px solid white;
	padding-bottom: 18px;
}

p {
	margin: 0;
	margin-bottom: 18px;
}

hr {
	margin: 40px 0;
}

/* CTA Styles */

.btn {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: bold;
	padding: 18px 16px;
	margin-right: 8px;
	margin-bottom: 18px;
	border: 1px solid white;
	border-radius: 4px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary {
	background-color: white;
	color: black;
}
.btn-secondary {
	color: white;
}

/* Basic Layout Needs */

section:first-of-type {
	padding: 80px 0;
}

.container {
	position: relative;
	margin: 0 auto;
	padding: 0 18px;
}

.text-center {
	text-align: center;
}

/* Navigation */

nav {
	font-family: 'Josefin Sans', sans-serif;
	background-color: #f5f5f5;
	z-index: 999;
	position: fixed;
	width: 100%;
}

nav,
nav a,
nav p a {
	color: #222222;
}

#nav-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

nav a {
	text-decoration: none;
}
nav p {
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
}
nav p span {
	font-weight: normal;
}
nav #menu {
	background-color: transparent;
	color: black;
	padding: 8px;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 2px;
	cursor: pointer;
}
nav #menu-list {
	display: none;
}
nav ul {
	list-style: none;
	text-align: right;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}
nav ul li {
	font-weight: bold;
	border-top: 1px solid rgba(0,0,0,0.2);
}
nav ul li a {
	display: block;
	padding: 24px 0;
}

/* Welcome */

#welcome {
	padding: 96px 0 48px 0;
}

#welcome .portrait img {
	width: 100%;
	border-radius: 4px;
}

/* Portfolio Samples */

.portfolio-sample {
/*	padding-bottom: 40px;*/
	margin-bottom: 60px;
/*	border-bottom: 1px solid rgba(255,255,255,0.2);*/
}

.portfolio-sample .cover {
	position: relative;
	border: 1px solid white;
	border-radius: 4px;
	overflow: hidden;
}

.portfolio-sample .cover .material-icon {
	position: absolute;
	color: black;
	background-color: white;
	bottom: 0;
	right: 0;
	padding: 8px;
	border-top-left-radius: 8px;
}

.portfolio-sample .cover img{
	width: 100%;
}

.portfolio-sample .cta .btn:last-of-type {
	margin-right: 0;
}

footer {
	background-color: #222222;
	padding: 48px 0;
}
footer p#copyright {
/*	font-family: 'Josefin Sans', sans-serif;*/
/*	text-transform: uppercase;*/
	text-align: right;
	margin: 0;
/*	border-top: 1px solid rgba(255,255,255,0.2);*/
}

/* Simple Grid Layout */

.col {
	position: relative;
}

footer .col {
	border-bottom: 1px solid white;
	border-left: 1px solid white;
	margin-bottom: 48px;
	margin-left: 41px;
	padding-left: 36px;
	padding-bottom: 36px;
	border-bottom-left-radius: 8px;
}

footer .col .material-icon{
	position: absolute;
	left: -41;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	margin: auto;
	color: black;
	background-color: white;
	padding: 8px;
}

footer ul {
	padding-left: 18px;
}

/* Dark-Mode Links */

a {
	transition: all 0.3s ease;
}
a:hover {
	opacity: 0.6;
}
p a {
	color: white;
}


/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	h1 {font-size: 3.25rem;}
	h2 {font-size: 2.875rem;}
	h3 {font-size: 2rem;}
	.container {
		max-width: 1280px;
	}
	.row {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 48px;
	}
	#welcome {
		padding-top: 120px;
	}
	#welcome .container,
	.portfolio-sample {
		display: grid;
		align-items: center;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 48px;
/*		padding-bottom: 60px;*/
/*		margin-bottom: 60px;*/
	}
	.portfolio-sample h3 {
		font-size: 2.5rem;
	}
	.portfolio-sample h3,
	footer h3
	{
		margin-top: 0;
	}
	.portfolio-sample h3 span {
		font-size: 1rem;
		line-height: 24px;
		padding-top: 24px;
	}
}