/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
	--bg-color: #eeeeee;
	--main-bg-color: #ffffff;
	--side-bg-color: #ffffff;
	
	--text-color: #000000;
	--side-text-color: #000000;
	--link-color: #3026e8;
	--link-color-hover: #7780ec;
	
	--font: "nintendods";
	--font-size: 20px;
	
	--margin: 10px;
	--padding: 20px;
	--border: none;
	--round-borders: 4px;
	--sidebar-width: 200px;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	font-size: var(--font-size);
	margin: 0;
	padding: var(--margin);
	color: var(--text-color);
	font-family: var(--font);
	line-height: 1.2;
	background: var(--bg-color);
}

::selection {
	background: rgba(0, 0, 0, 0.2);
}

mark {
	/*cool effect*/
	text-shadow: 1px 1px 4px var(--link-color);
	background-color: inherit;
	color: var(--text-color);
}

.container {
	display: grid;
	grid-template:
		"header header header"
		"nav main sidebar"
		"nav main sidebar2"
		/ 1fr 3fr 2fr;
	grid-template-rows: 10px auto auto;
	grid-gap: var(--margin);
	padding: 10px;
}

main {
	grid-area: main;
	overflow-y: auto;
	padding: var(--padding);
	background: var(--main-bg-color);
	border-radius: var(--round-borders);
}

.tootall {
	line-height: 0.5;
}

.tootall2 {
	line-height: 0.75;
}

.invisible {
	color: var(--main-bg-color);
}

header { 
	grid-area: header;
	border-radius: var(--round-borders);
	background: var(--main-bg-color);
	width: 110%;
	margin-left: -20px;
	margin-top: -20px; 
}

nav {
	grid-area: nav;
}

nav > div {
	border-radius: var(--round-borders);
	overflow: hidden;
	background: var(--side-bg-color);
	padding: 5px;
	margin: 5px;
	color: var(--side-text-color);
}

nav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	user-select: none;
}

aside {
	grid-area: sidebar;
	border-radius: var(--round-borders);
	background: var(--side-bg-color);
	padding: 5px;
	margin: 5px;
	color: var(--side-text-color);
}

h2 {
	background: #eee;
}

div.blockspam > span:nth-child(3) {
	display: none;
}

aside > h2 {
	text-align: center;
	margin: 0px;
}

/* @ thingies what are these called? */

@font-face {
	font-family: "nintendods";
	src: url("https://tim128.neocities.org/fonts/Nintendo-DS-BIOS.ttf") 
	format("truetype");
}