<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-family: 'montserrat', sans-serif; font-size: 100%; color: #fff; padding: 0; margin: 0;}
a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted #fff;
}
a:hover {
	text-decoration: none;
}
@font-face {
    font-family: 'montserrat';
    src: url('fonts/montserrat-regular-webfont2.woff') format('woff2'),
         url('fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'origamibats';
    src: url('fonts/origamibats-webfont.eot');
    src: url('fonts/origamibats-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/origamibats-webfont2.woff') format('woff2'),
         url('fonts/origamibats-webfont.woff') format('woff'),
         url('fonts/origamibats-webfont.ttf') format('truetype'),
         url('fonts/origamibats-webfont.svg#origamibatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
	background: #111;
	overflow: hidden;
}
div.container {
	display: table-cell;
	text-align: center;
    margin: 0;
    vertical-align: middle;
}
.icon {
	font-size: 20px;
}
.origami {
	font-family: 'origamibats';
	font-size: 100px;
	color: #fff;
	line-height: 60%;
}
.title {
	color: #fff;
}
.button {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid #fff;
	color: #fff;
}
.button:hover {
	color: #000;
	background-color: #fff;
	-webkit-transition: background-color 300ms linear, color 300ms linear;
    -moz-transition: background-color 300ms linear, color 300ms linear;
    -o-transition: background-color 300ms linear, color 300ms linear;
    -ms-transition: background-color 300ms linear, color 300ms linear;
    transition: background-color 300ms linear, color 300ms linear;
}
.sign {
	font-size: 10px;
	color: white;
}
.icon-basic-heart {
	display: inline-block;
	color: red;
	margin-left: 3px;
	font-size: 15px;
	vertical-align: bottom;
}
.pulse {
	-webkit-animation: pulse 1s linear infinite;
	-moz-animation: pulse 1s linear infinite;
	-ms-animation: pulse 1s linear infinite;
	animation: pulse 1s linear infinite;
}

.list {
	width: 400px;
	margin: 0 auto 30px auto;
	text-align: left;
}
.list &gt; div {
	border-bottom: 1px solid #888;
}
.list-icon {
	font-size: 20px;
	text-align: center;
	display: inline-block;
	width: 50px;
	position: relative;
	bottom: -5px;
}
.list-item {
	padding: 15px 0;
	display: inline-block;
}

@media screen and (max-width: 359px) {
	.list {
		width: 98%;
	}

	.list-item {
		font-size: 12px;
	}

	.button {
		display: block;
		margin: 0 auto 10px auto;
		width: 98%;
	}
}

@keyframes "pulse" {
	0% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	50% {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-o-transform: scale(0.8);
		-ms-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes pulse {
	0% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	50% {
		-moz-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes "pulse" {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	50% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-ms-keyframes "pulse" {
	0% {
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	50% {
		-ms-transform: scale(0.8);
		transform: scale(0.8);
	}
	100% {
		-ms-transform: scale(1);
		transform: scale(1);
	}
}</pre></body></html>