* {
	box-sizing: border-box;
}

:root {
	--bg: #111;
	--text: #e4e4e4;
}

html {
	background-color: var(--bg);
	background-image: url('/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--text);
	font-family: Sura, Lusitana, serif;
	font-size: 15px;
}

html,
body {
	min-height: 100dvh;
}

@media (min-width: 500px) {
	html {
		font-size: 18px;
	}
}

body {
	margin: 0;
}

h1 {
	text-transform: uppercase;
	font-size: 2rem;
	letter-spacing: 0.04em;
	margin: 0 0 1rem;
}

p,
ul {
	margin: 0 0 1rem;
}

a:link,
a:visited {
	color: inherit;
}

video,
img {
	max-width: 100%;
	height: auto;
}
