:root {
	--text: #1d1d1b;
	--bg-color: #fdfdfd;
	--links: #3e519f;
}

[data-theme="light"] {
	--text: #1d1d1b;
	--bg-color: #fdfdfd;
	--links: #3e519f;
}

[data-theme="dark"] {
	--text: #fdfdfd;
	--bg-color: #1d1d1b;
	--links: #3e519f;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	color: var(--text);
	background-color: var(--bg-color);
	font-family: magistral-condensed, sans-serif;
	font-weight: 400;
	font-style: normal;
}

canvas {
	display: block;
	vertical-align: bottom;
	z-index: 1;
}
.container {
	z-index: 0;
	height: 100%;
	padding: 2rem;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#particles-js {
	z-index: 2;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(bg-color);
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
p {
	font-size: clamp(32px, 2em, 2rem);
}
.logo {
	width: 358px;
	height: 279px;
	display: block;
	margin: 0 auto;
	position: relative;
}
h1 {
	font-size: 4vw;
	font-family: magistral-condensed, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--text);
}

h2 {
	font-size: 2vw;
	font-family: magistral-condensed, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: var(--text);
}

h3 {
	font-size: 1.5vw;
	font-family: magistral-condensed, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: var(--text);
}


a {
	color: var(--links);
	text-decoration: none;
	transition: 300ms;
}
a::after {
	content: "";
	width: 0px;
	height: 1px;
	display: block;
	background: var(--links);
	transition: 300ms;
}
a:hover,
a:focus {
	color: var(--text);
}
a:hover::after,
a:focus::after {
	width: 100%;
}
ul {
	list-style: none;
	display: flex;
	flex-direction: row;
}
ul > li {
	cursor: default;
	margin-right: 2rem;
}
.mt-10 {
	margin-top: 4rem;
}
ul.button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	margin: 0 auto;
}
ul.button li {
	padding: 1rem;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
ul.button li.active {
	padding: 1rem;
	background-color: var(--links);
	color: #fdfdfd;
}