* { box-sizing: border-box; }
:root {
	--pad00: 16px;
	--pad01: calc(var(--pad00) / 2);
	--pad02: calc(var(--pad00) / 4);
}
.flexbox, .flexbox-x, .flexbox-y { display: flex; flex-direction: inherit; }
.flexbox-x { flex-direction: row; }
.flexbox-y { flex-direction: column; }
.flex { flex: 1; }
.noflex { flex: initial; }
.cont { padding: var(--pad00) 0 0 var(--pad00); }
.ent { margin: 0 var(--pad00) var(--pad00) 0; }
input, textarea {
	color: inherit;
	font-family: inherit;
	background: #0004;
	padding: 4px;
	border-radius: var(--pad01);
	border: 1px solid #0008
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
html {
	/* background: linear-gradient(#222, #333); */
	/* background: linear-gradient(#808080, #404040); */
	background: linear-gradient(to bottom right, #f08, #08f);
	/* background: linear-gradient(to bottom right, #f00, #f0f); */
	/* background: linear-gradient(to bottom left, #f80, #f8f, #08f); */
	font-family: "Inter", sans-serif;
	font-size: 16px;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	background-attachment: fixed;
}
body {
	width: min(800px, 100%);
}
header {
	order: 1;
	line-height: 1;
	user-select: none;
	/* font-weight: 100%; */
	font-weight: 900;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-family: "Anton", sans-serif;
}
nav {
	margin-top: 4px;
	display: flex;
	justify-content: center;
	height: 32px;
	min-width: 48px;
	width: 100%;
	border-radius: 24px;
	padding: 4px 8px;
	background: #0000007f;
	overflow: hidden;
	box-shadow: 0 0 8px #000;
}
nav > a {
	color: #ffffff;
	padding: 0 8px;
	font-size: clamp(16px, 4vw, 24px);
	text-decoration: none;
	background: #ffffff80;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
}
nav > a:first-child {
	border-radius: 16px 0 0 16px;
	padding-left: 16px
}
nav > a:last-child {
	border-radius: 0 16px 16px 0;
	padding-right: 16px;
}
nav > a:only-child {
	border-radius: 16px;
}
nav > a:hover {
	color: #000000;
	background: #ffffff;
	box-shadow: 0 0 32px #ffffff;
}
header > #header1 {
	color: transparent;
	/* font-style: italic; */
	font-size: min(72px, 12vw);
	background: linear-gradient(
		to right,
		#ffffff80,
		#ffffffff,
		#ffffff80
		);
	background-clip: text;
}
#absolute {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -4096;
	font-weight: 900;
}
#fscreen {
	z-index: 4096;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(8px);
	background: #00000080;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: none;
}
main { order: 2; }
.window {
	display: flex;
	flex-direction: column;
	min-width: 2ch;
	min-height: 1em;
	background: #00000080;
	box-shadow: 0 0 8px #000;
	border-radius: 8px;
	backdrop-filter: blur(6px);
	overflow: hidden;
}
.window > .title {
	text-align: center;
	padding: var(--pad01);
	background: #00000040;
}
.window > .user-content {
	flex: 1;
	margin: var(--pad01);
	padding: var(--pad01);
	/* color: black;
	 * border-radius: var(--pad01);
	 * background: #ffffff;
	 */
}
.centered {	text-align: center; }
.window > .user-content img { border-radius: var(--pad01); }
.window > .user-content > .field { background: #fff; }
.window .button, button {
	border: none;
	color: inherit;
	background: #0000007f;
	text-align: center;
	border-radius: 100vmax;
	padding: 4px 4px;
	margin: 4px 0;
	box-shadow: 0 0 4px #000;
	font-weight: 900;
	transition: color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
}
.window .button:hover, button:hover {
	background: #fff;
	box-shadow: 0 0 4px #fff;
	color: #000;
}
.window a[href]:not(.button) {
	color: #0ff;
	font-weight: 600;
}
#pagetitle {
	font-size: 48px;
	font-family: "Anton", sans-serif;
	text-align: center;
}
.photo-gallery {
	display: grid;
	flex-wrap: wrap;
	/* gap: 8px; */
	grid-template-columns: repeat(4, 1fr);
}
.photo-gallery > .img-wrapper {
	width: 100%;
	aspect-ratio: 1; /* 1:1, square, quadrato */
	overflow: hidden;
}
.photo-gallery > .img-wrapper > a > img {
	width: 100%;
	height: 100%;
	transition: filter 0.1s ease, transform 0.1s ease;
	display: flex;
}
.photo-gallery > .img-wrapper > a > img:hover {
	z-index: 2;
	filter: brightness(1.5);
	transform: scale(1.2);
}
.photo-gallery > .img-wrapper > a > img:active {
	filter: brightness(0.5);
	transform: scale(0.8);
}
a[href] { color: inherit; }
table {
	border-radius: var(--pad01);
	background: #0004;
	border: 1px solid #0008;
	text-align: center;
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}
table th,
table td {
  border-right: 1px solid #fff8;
  border-bottom: 1px solid #fff8;
  padding: 8px 12px;
}
table tr > *:last-child {
  border-right: none;
}
table tbody tr:last-child > * {
  border-bottom: none;
}
table thead { background: #0004; }
footer {
	order: 3;
	display: flex;
	flex-direction: row;
}
footer > .header2 {
	font-family: "Anton", sans-serif;
	font-size: 2em;
}