@font-face {
	font-family: "BespokeSlab";
	src:
		local("BespokeSlab"),
		url("./fonts/BespokeSlab-Variable.woff2") format("woff2"),
		url("./fonts/BespokeSlab-Variable.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-background: #32442d;
	--color-text: #e2dd75;
}

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

*::selection {
	background-color: var(--color-text);
	color: var(--color-background);
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	background-color: var(--color-background);
	color: var(--color-text);
	line-height: 1.5;
	font-size: 1rem;
	font-weight: 300;
}

img,
video {
	max-width: 100%;
	display: block;
}

main {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
}

h1 {
	font-family: "BespokeSlab", serif;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 1rem;
}

@media (min-width: 600px) {
	h1 {
		font-size: 2rem;
	}
}

a {
	color: var(--color-text);

	&:hover {
		text-decoration: none;
	}
}
