@import url(fonts/Minecraft.css);
@import url(colors.css);

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Minecraft;
}
a {
	color: var(--blue-light-1);
	text-decoration: none;
	&:hover,
	&:active,
	&:focus,
	&:focus-visible {
		text-decoration: underline;
	}
	&.default-color {
		color: inherit;
	}
}
html {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	background: var(--grey-dark-2);
	color: var(--grey-light-2);
}
body {
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 3rem;
}
