html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-size: 16px; /* Base font size */
    font-family: 'Inter';
}

a {
	cursor: pointer;
	text-decoration: none;
}

/* ------ Media ------ */
img {
	/*
    max-width: 100%;
    max-height: 100%;
	*/
	pointer-events: none !important;
	display: block;
	max-width: 100%;
	height: auto;
}
video {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ---- Animations ---- */
.slide {
	animation: slide 1s cubic-bezier(0.2, 0.6, 0.2, 1);
	animation-fill-mode: backwards;
}

.delay01 { animation-delay: .20s; }
.delay02 { animation-delay: .40s; }

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(8vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}


/* --- Page container --- */
.page-container {
	max-width: 720px;
	margin: 20px auto;
	padding-left: 16px !important;
	padding-right: 16px !important;
}

html {
	scroll-behavior: smooth;
}


/* --- header --- */

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
}

.logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}


.avatar img {
	border-radius: 100px;
	width: 40px;
	height: 40px;
}

.name {
	font-size: 18px;
    font-family: 'Inter';
	font-weight: 500;
}

.section {
	margin-top: 80px;
	margin-top: 100px;
}

h1 {
	font-size: 48px;
	line-height: 120%;
	margin-bottom: 20px;
	color: #111111;
    font-family: 'Inter';
	font-weight: 500;
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
	}
}

@media (max-width: 640px) {
	header {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-nav ul {
		gap: 16px;
	}
}


h2 {
	font-size: 18px;
	line-height: 160%;
	color: #111111;
    font-family: 'Inter';
	font-weight: 400;
	margin: 24px 0 16px 0;
}

.bolder {
	font-size: 18px;
	line-height: 160%;
	color: #111111;
    font-family: 'Inter';
	font-weight: 600;
	margin: 24px 0 16px 0;
}



p {
	font-size: 18px;
	line-height: 160%;
	margin-bottom: 12px;
	color: #333333;
    font-family: 'Inter';
	font-weight: 300;
}


.email {
	font-size: 18px;
	line-height: 160%;
    font-family: 'Inter';
	font-weight: 500;
	color: #111111;
	text-decoration: none;
}

.email:hover {
	text-decoration: underline;
}

.copy-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%) translateY(10px);
	padding: 8px 12px;
	border-radius: 8px;
	background: #111111;
	color: #ffffff;
	font-size: 14px;
	line-height: 1;
	font-family: 'Inter';
	font-weight: 500;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 1000;
}

.copy-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

ul {
	list-style-position: inside;
	padding-left: 0;
}

li {
	font-size: 18px;
	line-height: 160%;
	color: #333333;
    font-family: 'Inter';
	font-weight: 300;
}

.footer {
	margin-bottom: 140px;
}

.splide__track {
	border-radius: 12px;
}

.splide__slide img{
  width: 100%;
  height: auto;
  display: block;
}
