html, body {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 0px;
}

h2 {
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h3 {
	margin: 0 0 2rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #cccccc;
}

a {
	text-decoration: none;
	color: #000;
}

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

.button {
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	padding: 15px 8px;
	display: inline-block;
	min-width: 200px;
	margin: 10px 20px;	
	box-shadow: 4px 4px 0px #000;
	transition: 0.4s box-shadow ease-in-out;
}

.button:hover {
	box-shadow: 0px 0px 0px #000;
	transition: 0.4s box-shadow ease-in-out;
}

.button.solid-button {
	background-color: #ff591e;
	border: 2px solid #832605;
	color: #fff;
}

.button.outline-button {
	background-color: transparent;
	border: 2px solid #000;
	color: #000;
}

.homepage-intro {
	text-align: center;
	padding: 150px 50px;
}

.intro-text {
	margin: 0 auto;
	max-width: 700px;
	font-size: 1.2rem;
	line-height: 1.8rem;
	text-align: center;
	padding: 0px 20px 0px;
	margin-bottom: 150px;
}

.portfolio-text {
	margin: 0 auto;
	max-width: 700px;
	font-size: 1.2rem;
	line-height: 1.8rem;
	text-align: center;
	padding: 0px 20px 0px;
	margin-bottom: 10px;
}

.portfolio {
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.portfolio li {
	position: relative;
	border-bottom: 1px solid #999;
	font-size: 1.3rem;
	font-weight: 300;
	transition: 0.4s background-color ease-in-out;
}

.portfolio li:last-child {
	border-bottom: none;
}

.portfolio li:hover {
	background-color: #eee;
	transition: 0.4s background-color ease-in-out;
}

.link-outer {
	padding: 20px;
	margin: auto;
	max-width: 700px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.link-outer .title::after {
	position: relative;
	top: 4px;
	height: 15px;
	width: 15px;
	display: inline-block;
	margin-left: 5px;
	content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M6 18L18 6M18 6H9M18 6V15' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.category {
	color: #c8c8c8;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 500;
}

.project-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: -1;
	background-color: #b7b7b7;
	background-size: cover;
	width: 200px;
	height: 250px;
	display: block;
	border: 2px solid #000;
	box-shadow: 4px 4px 0px #000;
}

.portfolio li:hover .project-img {
	opacity: 1;
	z-index: 2;
	transition: 0.2s;
}