@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
	font-size: 16px;
	--xs: 480px;
	--sm: 640px;
	--md: 720px;
	--lg: 960px;
	--xl: 1400px;

	--gray-200: #ddd;
	--gray-300: #777;
	--gray-400: #40424b;
	--primary: #b48f3e;
}

* {
	box-sizing: border-box;
}

body {
	display: flex;
	flex-wrap: wrap;
}

header {
	width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	color: var(--primary);
}

h4,
h5,
h6 {
	color: var(--gray-400);
}

h1 {
	font-size: clamp(2rem, 4vw, 2.25rem);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2rem);
}

h3 {
	font-size: clamp(1.5rem, 4vw, 1.75rem);
}

h4 {
	font-size: clamp(1.25rem, 4vw, 1.5rem);
}

h5 {
	font-size: clamp(1rem, 4vw, 1.25rem);
}

h6 {
	font-size: clamp(0.75rem, 4vw, 1rem);
}

div,
p,
a,
li,
time,
data,
button {
	font-size: 0.85rem;
	font-family:
		Arial,
		Helvetica Neue,
		Helvetica,
		sans-serif;
	color: var(--gray-300);
	line-height: 1.5;
}

ul,
div,
p,
time,
data {
	margin-bottom: 1rem;
}

li {
	margin-bottom: 0.75rem;
}

button,
a {
	padding: 0;
	outline: none;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

a {
	color: var(--gray-400);
	text-decoration: none;
}

a:hover {
	color: var(--primary);
}

.container {
	width: 100%;
	padding: 1rem;
	margin: 0 auto;
}

div.loading {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.5);
}

body.loading div.loading {
	display: flex;
}

.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #fff;
	border-bottom-color: var(--primary);
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
