* {
	padding:0px;
	margin:0px;
}
html {
	overflow: hidden;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "slnt" 0;
	font-size: 1rem;
	color: #ffffff;
	background-color: #343a40;;
}
body {
	width: 100vw;
	height: 100vh;
}
h1 {
	font-weight: 400;
	font-size: 1rem;
	text-transform: uppercase;
	line-height: 1;
}
a {
	color: #ffffff;
	text-decoration: none;
}
header {
	position: absolute;
	z-index: 50;
	top: 1rem;
	left: 1.5rem;
	display: flex;
	gap: 12px;
	align-items: center;
	vertical-align: middle;
}
header img {
	object-fit: contain;
}
main {
	position: relative;
	box-sizing: border-box;
	z-index: 20;
	width: 100%;
	height: 100%;
	max-width: 100vw;
	max-height: 100vh;
	padding: 0rem 0rem;
}
main img {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
main.contain {
	padding: 4rem 1.5rem;
}
main.contain img {
	object-fit: contain;
}
footer {
	position: absolute;
	z-index: 50;
	bottom: 1rem;
	right: 1.5rem;
	display: flex;
	gap: 12px;
	font-size: 0.75rem;
}
 