* {
	margin: 0;
	padding: 0;
}

:root {
	--button-color: #0cf;
	--button-color-dark: #0ae;
	--list-element-width: 200px;
	--list-height: 60px;
	--list-radius: 30px;
	--element-radius: 30px;
	--page-color: #1d2240; /* 29 34 64 */
	--window-color: #14182d; /* 20 24 45 */
	--selected-color: #28305a; /* 40 48 90 */
	--modal-body-color: rgba(20, 24, 45, 0.5);
	--modal-hover-color: rgba(20, 24, 45, 0.8);
}

body {
	font-family: 'Rubik', sans-serif;
	font-size: 20px;
	overflow-x: hidden;
	background-color: var(--page-color);
	color: white;
}
div#main-container {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--page-color);
}

h2 { font-size: 24px; }

a {
	text-decoration: none;
	color: white;
	user-select: none;
}

button {
	border: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	background-color: transparent;
	transition: background-color .2s;
}
