<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.overlayLander {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity .5s;
	visibility: hidden;
	opacity: 0;
	z-index: 15;
}

.overlayLander:target {
	visibility: visible;
	opacity: 1;
}

.modalLander {
	width: 100%;
	max-width: 400px;
	position: relative;
	margin: 5% auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 4px;
	transition: .5s;
	opacity: 0;
	color: #444;
}

.modalLander .content {
	margin-top: 1rem;
	text-align: left;
}

.modalLander .content a {
	max-width: 60%;
	margin: auto;
	display: block;
}

.overlayLander:target &gt; .modalLander {
	transform: translateY(10%) scale(0.9);
	transition-timing-function: cubic-bezier(0.8, 0, 0, 1.5);
	opacity: 1;
}

.modalLander a.close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	text-decoration: none;
	text-align: center;
	font-size: 40px;
	line-height: 41px;
	color: #aaa;
	transition: .25s;
}

.modalLander a.close:hover {
	background-color: #0dba00;
	color: white;
}</pre></body></html>