<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	font-family: sans-serif;
}

div.background {
	background-image: url('background.jpg');
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	background-position-x: right;
	background-position-y: bottom;
}


div.login {
	text-align: center;
	margin: 0 50px 300px 50px;
}

div.parent {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100vw;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

div.child {
	display: inline-block;
	vertical-align: middle;
}


h1 {
	-webkit-text-stroke: 1px white;
	color: rgb(30,63,101);
	font-size: 70px;
	padding-bottom: 20px;
}

div.word-cloud {
	width: 550px;
}


ul.cloud {
	list-style: none;
	padding-left: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	line-height: 2rem;
}

ul.cloud li {
	--size: 4;
	--color: rgb(89,89,89);
	color: var(--color);
	font-size: calc(var(--size) * 0.7rem + 0.9rem);
	display: block;
	padding: 0.8rem 1rem;
	position: relative;
	text-decoration: none;
	opacity: calc((6 - (3 - var(--size))) / 6);
}

ul.cloud li[data-weight="1"] {
	--size: 1;
}

ul.cloud li[data-weight="2"] {
	--size: 2;
}

ul.cloud li[data-weight="3"] {
	--size: 3;
}

.ripple {
	border: 2px solid white;
	border-radius: 30px;
	text-decoration: none;
	padding: 1rem 5rem;
	font-size: 1.5rem;
	color: white;
	cursor: pointer;
}

.ripple {
	background-color: rgb(30,63,101);
	transition: background 0.6s;
}

.ripple:active {
	background-color: rgba(30,63,101, 0.5);
	transition: background 0s;
}
</pre></body></html>