body {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	font-size: 24px;
	box-sizing: border-box;
	transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
	background-color: #121212;
	color: #e0e0e0;
}

body.dark .header {
	background-color: #121212;
}

body.dark .title,
body.dark .cv-company {
	color: #f0f0f0;
}

body.dark a {
	color: #8ab4f8;
}

body.dark hr {
	background-color: #333;
}

.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	background-color: white;
	z-index: 100;
	text-align: center;
	transition: background-color 0.3s ease;
}

.title {
	color: #000;
	margin-top: 10px;
	margin-bottom: 3px;
}

.subtitle {
	color: #949494;
	margin-top: 3px;
	margin-bottom: 10px;
}

.horizontal-nav ul {
	list-style-type: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.horizontal-nav li {
	position: relative;
	margin: 3px;
}

.about-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about-text {
	width: 70%;
}

.profile-picture {
	width: 25%;
	height: 25%;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
}

.profile-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

#about {
	min-height: calc(100vh - 160px);
}

.error-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: calc(100vh - 160px);
}

.error-image {
	width: 600px;
	height: 600px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	margin-bottom: 25px;
}

.error-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html {
	scroll-padding-top: 160px;
}

.basin-element {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: left;
}

.article-title-leader {
	color: gray;
	margin-bottom: 3px;
	font-size: 22px;
}

.article-title {
	margin-top: 2px;
	margin-bottom: 7px;
}

.basin-key {
	width: 25%;
	vertical-align: top;
	padding-top: 8px;
	padding-bottom: 8px;
}

.article-footer {
	margin-top: -10px;
}

.social-icons {
	margin-top: 10px;
	text-align: center;
	margin-bottom: 10px;
}

.social-icons a {
	font-size: 30px;
	position: center;
	margin-right: 20px;
	color: #949494;
}

hr {
	border: none;
	height: 2px;
	background-color: lightgrey;
	width: 100%;
	margin: 10px auto;
}

p {
	text-align: left;
}

pre,
code {
	font-family: inherit;
	font-size: inherit;
}

pre {
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: auto;
	background-color: #f6f8fa;
	padding: 12px 16px;
	border-radius: 6px;
}

pre code,
pre code.hljs {
	background: transparent;
	padding: 0;
}

body.dark pre {
	background-color: #1e1e1e;
}

body.dark pre code,
body.dark pre code.hljs {
	background: transparent;
}

.footnote-ref {
	font-size: 0.7em;
}

.footnote-ref a {
	text-decoration: none;
}

.footnotes {
	font-size: 0.8em;
	color: #555;
}

.footnote-backref {
	text-decoration: none;
	margin-left: 4px;
	font-size: 0.75em;
}

table {
	border: 0;
	width: 100%;
}

.cv-section-title {
	text-align: left;
	margin-bottom: 10px;
}

.cv-company {
	color: #000;
	text-align: left;
	font-weight: bold;
	font-size: 22px;
}

.cv-location {
	text-align: right;
	font-style: italic;
	font-size: 20px;
}

.cv-role {
	color: #949494;
	text-align: left;
	font-size: 20px;
	font-weight: bold;
	width: 80%;
}

.cv-date {
	color: #949494;
	text-align: right;
	font-style: italic;
	font-size: 20px;
	width: 20%;
}

.cv-li {
	text-align: left;
	font-size: 20px;
}