@font-face {
	font-family: 'Stapel Medium';
	src: local('Stapel Medium'), local('Stapel-Medium'), url('../assets/fonts/Stapel-Medium.woff2') format('woff2');
}

@font-face {
	font-family: 'Stapel Light';
	src: local('Stapel Light'), local('Stapel-Light'), url('../assets/fonts/Stapel-Light.woff2') format('woff2');
}

:root {
	--blue-1200: #15151e;
	--blue-1000: #040439;
	--blue-600: #1a63ff;
	--blue-300: #98b9f7;
	--blue-100: #dae7ff;

	--red: #e31e24;

	--glow: rgba(26, 99, 255, 0.6);
}

html,
body {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html {
	font-size: 14px;
	line-height: 1.1;
	margin: 0;
	overflow: hidden;
}

body {
	overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	font-weight: normal;
	font-family: Stapel Medium;
	color: white;
}

h1 {
	font-size: 36px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 14px;
}
h6 {
	font-size: 12px;
}

* {
	padding: 0;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	text-decoration: none;
	border: unset;
	font-weight: normal;
}

a,
li {
	color: white;
	font-size: 16px;
	font-family: Stapel Medium;
}

li {
	margin-left: 20px;
}

button {
	width: fit-content;
	height: fit-content;
	display: flex;
	font-family: Stapel Medium;
	font-size: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: white;
	text-align: unset;
}

.wrapper {
	width: calc(100% - 64px);
	padding: 0px 32px;
}

@media (min-width: 768px) {
	h5 {
		font-size: 16px;
	}
	h6 {
		font-size: 14px;
	}

	.wrapper {
		width: calc(100% - 96px);
		padding: 0px 48px;
	}
}

@media (min-width: 1440px) {
	h1 {
		font-size: 64px;
	}
	h2 {
		font-size: 48px;
	}
	h3 {
		font-size: 32px;
	}
	h4 {
		font-size: 24px;
	}
	h5 {
		font-size: 20px;
	}
	h6 {
		font-size: 16px;
	}

	.wrapper {
		max-width: 1440px;
		width: calc(100% - 270px);
		padding: 0px 135px;
		margin: 0 auto;
	}
}
