@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@100;300;500&display=swap');

:root {
	--font: 'Kanit';
	--mono-font: 'Azeret Mono';
	--regular-weight: 300;
	--heading-weight: 800;
}

html,
body {
	background-color: rgb(rgb(234, 236, 207));
	color: black;
	margin: 0px;
	padding-left: 10%;
	padding-right: 10%;
	position: relative;
}

h1 {
	font-family: var(--font);
	font-weight: 800;
	font-style: italic;
	font-size: 10vw;
	color: white;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	margin-bottom: -1rem;
}

h2 {
	font-family: var(--font);
	font-weight: 800;
	font-style: italic;
	font-size: 6vw;
	color: white;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	margin-bottom: -1rem;
}

p {
	font-family: var(--mono-font);
	font-weight: 300;
}
