<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mainContainer {
	position: absolute;
	height: 80%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main {
	width: 300px;
	height: auto;
}

.main .logo {
	width: 115px;
	height: 148px;
	background: url(../img/img_logo_red.svg) 50% 50% / 115px no-repeat;
	margin: 0 auto;
}

.main .main_heading {
	width: 130px;
	height: auto;
	margin: 0 auto;
	margin-top: 20px;
}

.main a h1 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	width: 130px;
	font-size: 24px;
	letter-spacing: 6px;
	font-weight: 700;
}

.main .content {
	width: 100%;
	margin-top: 20px;
	text-align: center;
}

.main .content p {
	font-size: 18px;
	color: #666666;
}

.main .start-button {
	margin: 0 auto;
	margin-top: 20px;
	width: 146px;
	height: 45px;
	cursor: pointer;
}

button {
	outline: none;
	cursor: pointer;
}

.main .start-button button {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	background: transparent;
	border: 2px solid #f45962;
	color: #f45962;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease-in-out;
	box-sizing: border-box;
}

.main .start-button button:hover {
	background: #f45962;
	color: #fff;
	font-weight: 500;
}

.main .start-button button:active {
	transform: scale(0.93);
}</pre></body></html>