* {
	margin: 0;
	padding: 0;
}
:root {
	--main-bg: #f0f0f0;
	--main-fg: #50D890;
	--secondary-fg: #272727;
	--main-txt: #f0f0f0;
	--main-highlight: #4F98CA;

	font-size: max(1vw, 2vh);
	font-family: 'Ubuntu', sans-serif;
}

body {
	background: var(--main-bg);
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-top: 15px;
}
h1, h2 {
	color: #212121;
}
h1 {
	font-size: 2.5rem;
	font-weight: bold;
}
h2 {
	font-weight: 500;
}
.web {
	right: 50%;
	position: absolute;
	margin: 30px 0;
	padding-top: 50px;
	padding-bottom: 50px;
}

.node {
	text-decoration: none;
	background: var(--main-fg);
	color: var(--main-txt);
	width: 10rem;
	height: 10rem;
	position: relative;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	transition: transform .1s;
}
.node:hover {
	transform: scale(1.02);
}
.node:active {
	transform: scale(.97);
}
.node span {
	text-align: center;
}

.node .title {
	font-weight: bold;
}
.node .date {
	font-weight: 500;
}
.node .desc {
	font-weight: lighter;
	font-style: italic;
}

.word {background: #548CFF;}
.tool {background: #FF5959;}
.game {background: #2FDD92;}




