html {
	background: #fff;

}

body {
	--pad_global: 1rem;
	max-width: 1200px;
	background: #fff;
	border: 5px ridge black;
	margin: 2rem auto;
	font-family: system-ui, sans-serif;
	line-height: 1.6;
	padding: var(--pad_global);
}

h1 {
}

h3 {
	border-bottom: 2px solid black;
	padding-bottom: 0.25rem;

}

a {
	color: #0056b3;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

section {
	padding-bottom: 1rem;

}

ul {
	list-style-type: square;

}

.splitting_rule {
	border-color: rgb(220, 220, 220, 0.4);
	margin-left: calc(var(--pad_global)*-1);
	margin-right: calc(var(--pad_global)*-1);

}

#first.splitting_rule {
	box-shadow: 0px 3px 10px black;

}

#second.splitting_rule {
	border-color: rgb(220, 220, 220);
	border-width: thick;
	border-style: double;
	box-shadow: 0px 12px 10px rgb(220, 220, 220, 0.6);
	margin-bottom: 5px;
}


.navbar {
	display: flex;
	border: 3px solid black;
	padding: 0rem 1rem;
	align-items: center;
	justify-content: center;
	margin: 2rem 0.5rem;

}

.navbar a {
	text-align: center;
	font-size: x-large;
	margin: 0.5rem;
	color: black;

}

.nav_links {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;

}

.nav_links a {
	text-decoration: none;
	font-size: 20px;
	color: #222;
}

.nav_links a:hover {
	text-decoration: underline;
}



.hero_section {
	display: flex;
	flex-wrap: wrap;
	gap: 10%;
	border-bottom: 0px;

}

.hero_section > :first-child {
	flex: 0 0 60%;

}

.hero_section > :last-child {
	flex: 0 0 30%;

}

.resume_btn {
	max-width: 30%;
	padding: 0.75rem 1rem;
	border: 3px solid black;
	box-shadow: 5px 10px black;
	text-wrap: wrap;

}

.resume_btn a {
	margin-left: 0.5rem;
	color: black;

}

.resume_btn a:hover {
	text-decoration: underline;
	color: blue;

}

.project_section {
	width: auto;

}

.project_section h1 {
	text-align: center;
	margin-bottom: 0px;
	border: 0px;

}

.project_card_cont {
	display: flex;
	flex-wrap: wrap;

}

.project_card_cont_content {
	display: flex;
	flex-wrap: nowrap;
	gap: 5%;

}

.project_card_cont_content > :first-child {
	flex: 0 0 30%;

}

.project_card_cont_content > :last-child {
	flex: 0 0 65%;

}

.project_card_cont_content img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;

}

.project_skill_cont {
	padding: 0rem 1rem;

}

.project_skill_cont h3 {
	padding: 0.5rem 1rem;
	box-shadow: 0px 10px 5px black;

}

.project_skill_cont > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0rem 0.25rem;

}

.project_skill_cont > div > p {
	width: fit-content;
	height: fit-content;
	border: 1px ridge rgb(128, 128, 128);
	border-radius: 5px;
	background-color: black;
	padding: 0.25rem 0.5rem;
	font-family: "Google Sans Code", sans-serif;
	color: white;
	margin: 0.5rem 0rem;

}

.project_link_cont {
	display: flex;
	gap: 5%;
	padding: 2rem 0rem;

}

.project_link_cont a {
	--color-link: black;
	width: fit-content;
	height: fit-content;
	border: 2px solid var(--color-link);
	border-radius: 5px;
	background-color: rgb(128, 128, 128, 0.15);
	padding: 0.5rem 1rem;
	color: var(--color-link);

}


.project_card {
	border: 3px solid grey;
	padding: 5px 20px;
	margin: 3rem 0rem;
	min-width: 0px;

}

.main_photo {
	width: 300px;
	height: auto;
	box-shadow: 5px 10px 5px grey;
	margin-top: 3em;

}

.skill_section {
	border: 0px;

}

.skill_section h1 {
	text-align: center;
	padding: 10px;

}

/* This section will be readded once the Project page is completed.
.project_page_link_main {
	display: flex;
	align-items: center;
	justify-content: center;

}

.project_page_link_main div {
	text-align: center;
	line-height: 0.25;
	padding: 1rem 0.5rem;
	border: 3px solid black;
	transition: translate 1s;

}

.project_page_link_main div:hover {
	translate: 0px 20px;
	text-align: center;
	line-height: 0.25;
	padding: 1rem 0.5rem;
	border: 3px solid black;

}
*/

.placard_cont {
	line-height: 2;
	font-size: large;

}

/* Deprecated
.placard_cont p {
	width: fit-content;
	height: fit-content;
	border: 2px ridge rgb(128, 128, 128);
	border-radius: 5px;
	background-color: rgb(128, 128, 128, 0.15);
	padding: 0.25rem 0.5rem;

}
*/

footer > h2 {
	text-align: center;

}

.social_links {
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 2rem;
	padding: 2rem 0rem;

}

.social_links a {
	color: #333;
	font-size: 3rem;
	transition: color 0.2s ease, transform 0.2s ease;
}

.social_links a:hover {
	color: #0077ff;
	transform: translateY(-2px);
}

/* Mobile Screen */
@media screen and (max-width: 768px) {
	body {
		background: #fff;
		border: 5px ridge black;
		font-family: system-ui, sans-serif;
		line-height: 1.6;

	}

	.project_card {
		border: 3px solid grey;
		padding: 5px 10px;
		margin: 1rem 0.5rem;
		min-width: 0px;

	}
	.project_card_cont_content {
		display: block;
	}

	.project_card_cont_content > :first-child {
		width: 100%

	}

	.project_card_cont_content > :last-child {
		width: 100%

	}

	.hero_section {
		display: block;
		justify-content: center;

	}

	.hero_section > :first-child {
		width: 100%;

	}

	.hero_section > :last-child {
		width: 100%;

	}

	.resume_btn {
		max-width: 70%;
		text-wrap: nowrap;
		text-align: center;
		padding: 0.25rem;

	}

	.placard_cont {
		line-height: 1.5;

	}

	.social_links {
		padding: 0rem;

	}

}


