@font-face {
  font-family: 'BBHBartler';
  src: url('font/BBHBartler.ttf') format('truetype');
}

html, body {
	background-color: #330014;

	font-family: 'BBHBartler', sans-serif;
	color: #fff;
}

* {
	padding: 0;
	margin: 0;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	text-align: center;
	font-size: 1.2rem;
}

.inner {
	margin: 30px;
}

.text {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.logo {
	max-width: 50%;
	margin-bottom: 50px;
}

.text p {
	font-size: 2vw;
}

@media only screen and (max-width: 600px) {
	.logo {
		max-width: 100%;
	}
	.text p{
		font-size: 1em;
	}
}

a,
a:visited {
	color: #ff8801;
}

.links {
	margin-top: 20px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}