@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-1000: #040439;
	--blue-600: #1a63ff;
	--blue-300: #98b9f7;
	--blue-100: #dae7ff;

	--slate: #4f4f6d;

	--red: #e31e24;
	--red-600: #e31e24;

	--green-600: #1ee33c;

	--glow: rgba(26, 99, 255, 0.6);
}

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 {
	color: white;
	font-size: 16px;
	font-family: Stapel Medium;
}

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;
}

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% - 32px);
	padding: 0px 16px;
}

.backdrop {
	position: fixed;
	top: 0;

	width: 100%;
	height: 100%;

	display: none;

	overflow: hidden;

	background-color: #0f172b;
	opacity: 0;

	z-index: 900;
}

.backdrop.over-all {
	z-index: 1300;
}

.backdrop.active {
	opacity: 0.3;
	display: block;
}

.backdrop.over-all.active {
	opacity: 0.9;
}

@media (min-width: 768px) {
	h5 {
		font-size: 16px;
	}
	h6 {
		font-size: 14px;
	}

	.wrapper {
		width: calc(100% - 64px);
		padding: 0px 32px;
	}
}

@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;
	}
}
