@import url('https://fonts.googleapis.com/css2?family=Sono:wght@200..800&display=swap');

html {
	font-family: "Sono", monospace;
	margin: 0px;
	box-sizing: border-box;
}


body {
	color: rgb(204, 204, 204);
	background-color: rgb(50, 44, 43);
	height: 100svh;
	position: relative;
}

#wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	image-rendering: pixelated;
}

#canvas-wrapper {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	align-self: center;
}

canvas {
	user-select: none;
	touch-action: none;
}

input#in-game-input {
	color: white;
	background-color: transparent;
	position: absolute;
	border-radius: 0px;
	border: none;
	padding: 0px;
	text-align: center;
	text-transform: uppercase;
}

input#in-game-input:focus {
	outline: none;
}

footer {
	text-align: center;
}

#header {
	flex-shrink: 0;
	background-color: rgb(228, 197, 158);
	color: rgb(40, 40, 40);
	padding: 20px;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

#header a {
	font-family: "Sono", monospace;
	color: black;
	font-size: 1.2rem;
	text-decoration: none;
	rotate: -15deg;
}

#header a:hover {
	text-decoration: underline;
	text-decoration-color: rgb(128, 61, 59);
	text-decoration-thickness: 0.2em;
}

#main-pages {
	display: flex;
	gap: 1rem;
}

main {
	padding: 0.8rem;
}

.home-image {
	text-align: center;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.smaller-width {
	max-width: 800px;
	margin: auto;
	color: rgb(50, 44, 43);
	color: rgb(128, 61, 59);
	color: rgb(228, 197, 158);
	padding: 1em;
}

a {
	text-decoration: none;
	color: white;
	color: rgb(228, 197, 158);
}

#auth-providers {
	display: flex;
	justify-content: space-evenly;
	column-gap: 1em;
}

.login-provider {
	display: block;
	text-align: center;
}

.login-provider img {
	width: 164px;
	height: 164px;
}
