:root {
	--theme-color: #00ff99;
	--theme-foreground-color: #000;
	--foreground-color: #dbdbdb;
	--background-color: #151515;
}

@font-face {
	src: url(/assets/fonts/BebasNeue.woff2), url(/assets/fonts/BebasNeue.woff);
	font-family: 'Bebas Neue';
}

@font-face {
	src: url(/assets/fonts/InterDisplay.woff2);
	font-family: 'Inter';
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
}

html {
	scroll-behavior: smooth;
	scrollbar-color: var(--theme-color) var(--background-color);
	scrollbar-width: thin;
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact;
	overflow-x: hidden;
	width: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
	color: var(--foreground-color);
	background: linear-gradient(135deg, var(--background-color) 0%, #000000 100%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Bebas Neue';
	color: var(--theme-color);
}

a {
	transition: color 0.15s ease-in-out;
	color: var(--theme-color);
}

a:hover {
	color: hsl(from var(--theme-color) h 75% l / 1);
}

::selection {
	background-color: var(--theme-color);
	color: var(--theme-foreground-color);
}

.cv {
	width: 210mm;
	min-width: 210mm;
	max-width: 210mm;
	min-height: 297mm;
	height: 297mm;
	max-height: 297mm;
	box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
	border: 1px solid #000;
	background: #101010;
}

.cv__inner {
	position: relative;
	display: flex;
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}

.cv__code-overlay {
	position: absolute;
	height: 100%;
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: left;
	z-index: -1;
	filter: grayscale(1);
	opacity: 0.1;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.cv__left {
	height: 100%;
	width: 35%;
	background: #151515;
	border-right: 3px solid var(--theme-color);
}

.cv__left-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	padding: 0.75rem;
	gap: 1rem;
}

.cv__header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cv__version {
	text-align: center;
	font-size: 10px;
}

.cv__avatar-wrapper {
	width: 60%;
}

.cv__avatar {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
	border-radius: 100%;
	box-shadow: 0.1rem 0.1rem 0.1rem #00000080;
}

.cv__personal-info {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.cv__summary {
	width: 100%;
}

.cv__summary-text {
	width: 100%;
	text-wrap: pretty;
	text-wrap-style: pretty;
	text-align: justify;
	font-size: 16px;
}

.cv__section-title {
	display: block;
	width: 100%;
	margin: 0.5rem 0;
	font-size: 2rem;
}

.cv__tech-stack {
	width: 100%;
}

.cv__tech {
	display: flex;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.cv__tech-stack-pill {
	font-size: 14px;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	width: fit-content;
}

.cv__tech-stack-pill--html {
	color: #fff;
	background-color: #e34f26;
}

.cv__tech-stack-pill--css {
	color: #fff;
	background-color: #663399;
}

.cv__tech-stack-pill--js {
	color: #000;
	background-color: #f7df1e;
}

.cv__tech-stack-pill--react {
	color: #fff;
	background-color: #61dafb;
}

.cv__tech-stack-pill--ts {
	color: #fff;
	background-color: #3178c6;
}

.cv__tech-stack-pill--next {
	color: #000;
	background-color: #fff;
}

.cv__tech-stack-pill--astro {
	color: #fff;
	background-color: #bc52ee;
}

.cv__tech-stack-pill--tw {
	color: #fff;
	background-color: #06b6d4;
}

.cv__tech-stack-pill--sass {
	color: #fff;
	background-color: #cc6699;
}

.cv__tech-stack-pill--shopify {
	color: #fff;
	background-color: #7ab55c;
}

.cv__tech-stack-pill--github {
	color: #fff;
	background-color: #8000ff;
}

.cv__tech-stack-pill--wordpress {
	color: #fff;
	background-color: #21759b;
}

.cv__tech-stack-pill--ae {
	color: #fff;
	background-color: #3700ff;
}

.cv__tech-stack-pill--gimp {
	color: #fff;
	background-color: #5c5543;
}

.cv__tech-stack-pill--seo {
	color: #000;
	background-color: #00eaff;
}

.cv__tech-stack-pill--w3c {
	color: #fff;
	background-color: #04aa6d;
}

.cv__tech-stack-pill--semantics {
	color: #fff;
	background-color: #ffb700;
}

.cv__tech-stack-pill--lighthouse {
	color: #fff;
	background-color: rgb(205, 16, 16);
}

.cv__tech-stack-pill--responsiveness {
	color: #fff;
	background-color: #26a400;
}

.cv__footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	width: 100%;
	font-size: 10px;
	margin-top: auto;
}

.cv__footer-logo {
	display: block;
	width: 100px;
	height: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.cv__personal-info-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	list-style: none;
	padding: 0;
	font-size: 13px;
}

.cv__personal-info-list-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cv__personal-info-list-item a {
	line-height: 0;
	vertical-align: middle;
	color: var(--foreground-color);
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}

.cv__personal-info-list-item a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

.cv__personal-info-list-item-icon {
	width: 24px;
	height: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	vertical-align: middle;
	line-height: 0;
}

.cv__right {
	height: 100%;
	width: 65%;
	padding: 0.75rem;
}

.cv__right-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.cv__title {
	font-size: 6rem;
	width: 100%;
	text-align: center;
	height: fit-content;
}

.cv__subtitle {
	text-align: center;
	text-transform: uppercase;
	padding: 0 0 1rem 0;
	border-bottom: 3px solid var(--theme-color);
}

.cv__references {
	font-size: 14px;
}

.cv__references a {
	color: var(--foreground-color);
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}

.cv__references a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

.cv__education {
	font-size: 14px;
}

.cv__education-item {
	display: flex;
	gap: 0.25rem;
	flex-direction: column;
}

.cv__education-item-title {
	font-weight: 600;
}

.cv__education-item a {
	color: var(--foreground-color);
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}

.cv__education-item a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

.cv__projects-list {
	font-size: 14px;
	list-style: none;
	padding: 0;
}

.cv__projects-list-item a {
	font-weight: 600;
	text-decoration: none;
	color: var(--foreground-color);
	transition: all 0.15s ease-in-out;
}

.cv__projects-list-item a:hover {
	color: var(--theme-color);
	text-decoration: underline;
}

.cv__projects-list-item span {
	font-weight: 600;
}

.cv__experience-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 14px;
}

.cv__experience-item-title {
	color: var(--foreground-color);
}

.cv__experience-item-text {
	text-align: justify;
}
