@import "cookie.css";
@import "light-dark-mode.css";


body {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
}

h1 {
	font-weight: 600;
	font-size: 34px;
}

h2 {
	font-weight: 300;
	font-size: 20px;
}

h3 {
	font-weight: 300;
	font-size: 16px;

	margin-top: 10px;
	margin-bottom: 25px;
}

a {
	color: var(--theme-color);
}

p > a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

li > a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

p {
	font-weight: 400;
	font-size: 18px;

	margin-bottom: 20px;
}

figure.image {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.image img {
	width: auto;
}

.tags {
	flex-wrap: nowrap;
}

.tags > a {
	display: flex;
}

.main {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.full-height {
	position: relative;
	min-height: 100%;
}

.title-separation {
	margin-bottom: 20px;
}

.title-separation .title {
	border-bottom: 1px solid var(--theme-color);
	margin-bottom: 2rem;
	padding: 0.5rem 0;
}

.title-separation p {
	font-size: 1rem;
	font-weight: 300;
}

.title-separation span {
	font-size: 16px;
	font-weight: 200;
	font-style: italic;
}

.title-separation b {
	font-size: 18px;
	font-weight: 400;
}

.title-separation .tag {
	background-color: var(--theme-color);
	color: var(--text-color);
}

.has-text-primary {
	color: var(--theme-color) !important;
}

p.is-small {
	font-size: 0.8rem;
	font-weight: 400;
	color: #888888;
}


/* Portfolio */

.is-tiny {
	height: 0.5rem;
}

.project-box > figure.image {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 180px;
}

.project-box > figure.image img {
	max-height: 180px;
	width: auto;
}

.projects-showcase {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-box {
	background-color: var(--project-background);
	border-radius: 6px;
	box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
	display: block;
	padding: 1.0rem 0rem 0.25rem 0rem;
	max-width: 280px;
	height: 370px;
}

.project-box > .title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--project-title-color);
}

.project-box > .subtitle {
	font-size: 1rem;
	color: var(--project-subtitle-color);
}

.project-box > p {
	margin-bottom: 10px !important;
}

.is-w256 {
	height: auto;
	width: 256px;
}

.code {
	display: block;
	overflow-x: auto;
	color: #c5c8c6;
	tab-size: 4;
	padding-top: 0;
	padding-bottom: 5px;
}

pre {
	margin-bottom: 30px;
	margin-top: 15px;
	border-radius: 6px;
}

pre code.language-rust {
	padding-top: 0;
	padding-bottom: 0;
}


/* Resume */

ul {
	list-style: disc;
	margin-left: 1em;
}

li {
	font-size: 16px;
	font-weight: 200;
}

.is-large > li {
	font-size: 16px;
	font-weight: 300;
}

.is-one-tenth {
	flex: none;
	width: 10%;
}

.title-separation p b {
	font-size: 16px;
	font-weight: 400;
}

.wrapped > p {
	margin-bottom: 10px;
}

.card p.title {
	font-size: 18px;
	padding-bottom: 10px;
}

.card p.subtitle {
	font-size: 16px;
	margin-bottom: 0px;
}

.card-content {
	margin-left: 2%;
	margin-right: 2%;
	padding: 15px;
}

.card {
	display: flex;
	margin-bottom: 20px;
	box-shadow: 0.5em .5em 0.4em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
	min-height: 80px;
}

.card p {
	font-size: 14px;
}

.container {
	margin-top: 30px;
	padding-bottom: 100px;
	padding-left: 5px;
	padding-right: 5px;
}

.navbar {
	border-bottom: 1px solid var(--nav-border-color);
}

.padding-left-8 {
	padding-left: 80px;
}

.light-box {
	border-radius: 6px;
	box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
	display: block;
	padding: 1rem;
}

.table td, .table th {
	border: transparent;
	padding: 0.1em;
	vertical-align: middle;
}

.table {
	background-color: transparent;
	width: 100%;
}

th {
	font-weight: 400;
}

