:root {
	--bg-color: #531d22;
	--text-color: #000;
}

* {
	font-family: 'Oswald', sans-serif;
	color: var(--text-color);
	text-align: center;
	line-height: 2;
	font-size: 1rem;
	box-sizing: border-box;
	text-transform: uppercase;
	margin: 0;
}

.content {
	width: 30vw;
	min-width: 200px;
	height: auto;
	position: absolute;
	padding: 5px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
}

img.logo {
	height: auto;
	max-width: 100%;
	width: 100%;
	height: auto;
}

svg {
	margin-top: 5%;
}
svg path {
	transition: all .25s ease-in;
}
svg:hover path {
	fill: var(--bg-color);
}

a {
	transition: all .25s ease-in;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

body {
	width: 100vw;
	height: 100vh;
	background-color: var(--bg-color);
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0; 
}



@media (max-width: 600px) and (orientation:landscape) {
	.content {
		width: 60vw;
		height: 90vh;
		min-height: initial;
	}
}