@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;
}

color {
	color: #6CC24A;
}

.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;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.registerButton,
.discordButton {
  flex: 1;
  height: 70px;
  width: 150px;
  border: none;
  border-radius: 10px;
  font-family: 'Pixelify Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  background: #5e046e;
  color: white;
  box-shadow: inset 0 -0.365vw #53055c, 3px 3px 14px rgba(0,0,0,0.5);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.registerButton:hover,
.discordButton:hover {
  filter: brightness(1.08);

}