@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

body {
	font-family: 'Pixelify Sans', sans-serif;
	color: #ffffff;
	background-color: #6f0083;
	margin: 0;
	padding: 0;
	font-size: 2rem;
	min-height: 100vh;
	flex-direction: column;
	display: flex;
	overflow: hidden;
}

main {
	width: 100%;
	height: calc(100vh - 64px);
	padding: 1rem;
	box-sizing: border-box;
	overflow: auto;
}

h1 {
	font-size: 2rem;
	font-weight: bold;
}

h1,
h2 {
	margin: 0;
}

* {
	box-sizing: border-box;
}

.background {
	position: fixed;
	width: 250%;
	height: 250%;
	top: 50%;
	left: 50%;
	z-index: -1;
	background-size: 550px;
	background-position: -100px -100px;
	background-image: url('https://izumiihd.github.io/pixelitcdn/assets/background.png');
	transform: translate(-50%, -50%) rotate(15deg);
	opacity: 0.1;
}