@import url("https://unpkg.com/@catppuccin/palette/css/catppuccin.css");
html, body {
	height: 100%;
}

body {
	background-color: var(--ctp-mocha-mantle);
	background-image: url("/static/img/bliss_night.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-family: var(--pico-font-family);
	color: var(--ctp-mocha-text);
}

.container {
	max-width: 800px;
	margin: auto;
	margin-top: 5vh;
	margin-bottom: 5vh;
	background-color: var(--ctp-mocha-base);
	min-height: 100%;
	padding: 20px;
	border-radius: 5px;
	border-color: var(--ctp-mocha-blue);
	border-style: solid;
	position: relative;
}

ul {
	margin-left: 20px;
}

a {
	color: var(--ctp-mocha-link);
}

article {
	background-color: var(--ctp-mocha-surface0);
	padding: 20px;
	margin: 5px;
}

.grid {
	display: flex;
}
@media screen and (max-width: 500px) {
	.grid {
		display: block;
	}
}
.grid * {
	flex: 1 1 0px;
}

.centered-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

nav {
	margin-bottom: 1em;
}
nav .bigheader {
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("img/pattern_circles-4_1_1_0-0_0_1__hsla(240, 100_, 61_, 1.00)_hsla(227, 100_, 74_, 1.00).png");
}
nav .bigheader a {
	transition: all 0.1s;
	font-size: 4em;
	display: block;
	margin: auto;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 500px) {
	nav .bigheader a {
		font-size: 3em;
	}
}
nav .bigheader a:hover {
	font-size: 4.5em;
	filter: invert(1);
}
@media screen and (max-width: 500px) {
	nav .bigheader a:hover {
		font-size: 3.5em;
	}
}
nav ul {
	margin: 0px;
	background-color: var(--ctp-mocha-surface1);
	text-align: center;
	padding: 3px;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
@media screen and (max-width: 500px) {
	nav ul {
		flex-direction: column;
	}
}