@font-face {
	font-family: "Allianz";
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/ESAllianz-Regular.woff2);
}

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

:root {
	--font-sans: "Allianz", sans-serif;
	--color-gray: #666666;
	--color-light-gray: transparent;
	--color-dark: #080808;
	--primary: #9000ef;
	--primary-100: rgba(30, 30, 30, 0.8);
	--fs-small: 0.08rem;
	--fs-reg: 1.2rem;
	--nav-scale: clamp(2rem, 10vw, 8rem);
	--text-scale: clamp(1rem, 2vw, 3rem);
	--text-ls: calc(0.03rem - (var(--text-scale) - 1rem) * 0.02);
	--img-min: 20rem;
	--img-scale: clamp(var(--img-min), 32vw, 30rem);
}

html {
	font-family: var(--font-sans);
	letter-spacing: 0.01em;
	word-spacing: -0.04em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-synthesis: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

body {
	min-height: 100vh;
	background: #fff;
	color: #000;
	display: flex;
	flex-direction: column;
	font-family: var(--font-sans);
}

::selection {
	background: var(--primary);
	color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}
