:root {
	--fg: #fff;
	--bg: #470808;
	--gold: #9b7c2e;
}

@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 100;
	src: url('./fonts/Font-100.woff2') format('woff2');
}

@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 300;
	src: url('./fonts/Font-300.woff2') format('woff2');
}

@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 500;
	src: url('./fonts/Font-500.woff2') format('woff2');
}

@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 700;
	src: url('./fonts/Font-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Font';
	font-style: normal;
	font-weight: 900;
	src: url('./fonts/Font-900.woff2') format('woff2');
}

@font-face {
	font-family: 'HeaderFont';
	font-style: normal;
	font-weight: 400;
	src: url('./fonts/HeaderFont.otf') format('opentype');
}

@font-face {
	font-family: 'HeaderFontIt';
	font-style: normal;
	font-weight: 400;
	src: url('./fonts/HeaderFontIt.otf') format('opentype');
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-size: 18px;
}

@media all and (max-width: 1000px) {
	html,
	body {
		font-size: 16px;
	}
}

body {
	margin: 0;
	background-color: var(--bg);
	color: var(--fg);
	font-family: 'Font', sans-serif;
	font-weight: 100;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
	font-weight: 100;
}
h1 {
	font-size: 2.5rem;
}
h1,
h2,
h3,
h4 {
	font-family: 'HeaderFont', sans-serif;
}
h2 {
	margin: 3rem 0 2.5rem;
}
h3 {
	margin: 2rem 0 1.5rem;
}
h4 {
	margin: 1.5rem 0 1rem;
}
p {
	margin: 0 0 0.7rem;
	font-size: 1.1rem;
}

::-webkit-scrollbar {
	display: none;
}
