/* MarkoFiume.com/windows.css */
/* Theming for site windows + animations and decoration */

.window {
	font-weight: light;
	backdrop-filter: blur(32px);
	background: #00000040;
	transition: all 200ms ease;
	display: flex;
	flex-direction: column;
	box-shadow: none;
	border-radius: var(--gap);
	box-shadow: 0 0 calc(var(--gap) * 2) #ffffff20;
}
.window > .title {
	border-radius: var(--gap) var(--gap) 0 0;
	background-color: #00000040;
	line-height: 1;
	padding: var(--gap);
	min-height: calc(1em + (var(--gap) * 2));
	transition: all 200ms ease;
	font-weight: 300;
	padding: 8px;
}
.window:hover, .window:focus, .window:target {
	/*background-color: #ffffff20;*/
	box-shadow: 0 0 calc(var(--gap) * 2) #ffffffff;
}
.window:hover > .title,
.window:focus > .title,
.window:target > .title {
	background: #ffffff;
	color: #000000;
}
.window h1 {
	transition: text-shadow 200ms ease;
}
.window:hover h1,
.window:focus h1,
.window:target h1 {
	text-shadow: 0 0 16px #fff;
}
.window > .user-content {
	padding: 0.4em;
	min-height: 2em;
	flex: 1;
}