<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	text-size-adjust: none;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	@media (prefers-reduced-motion: no-preference) {
		scroll-behavior: smooth;
	}
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	background: url('../img/bg-pattern.jpg') #f7f7f7;
}

a {
	color: #333;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
}

svg {
	vertical-align: top;
}

.container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: auto;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	font-size: 2rem;
}
</pre></body></html>