@charset "UTF-8";



/* colors */

:root {
  --green: #78B82B;
  --greenwashed: #93C655;
  --dark: #2C2C2C;
  --light: #8C8C8C;
}



html, body {
	position: relative;
	min-height: 100%;
}


body {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	background: url(/hu/images/web/bg-lines-top.png) no-repeat left top, url(/hu/images/web/bg-lines-bot.png) no-repeat right bottom;
	background-size: 32% auto;
	background-color: var(--greenwashed);
	overflow-x: hidden;
	overflow-y: scroll;
	font-weight: 400;
	font-family: 'Quicksand', sans-serif;
}


/* selections  */

::selection { background: #ddd; }
::-moz-selection { background: #ddd; }
::-webkit-selection { background: #ddd; }
::-o-selection { background: #ddd; }


/* general tags and classes */

a, a:hover { text-decoration: none; }
.clear { clear: both }
.ovf { overflow: hidden; }
.centered { text-align: center }
.nowhite  { white-space: nowrap }



.fluid { margin: 0 auto }
.wrap {  margin: 0 40px }


main {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	width: 920px;
	max-width: 100%;
	padding: 40px 0;
	text-align: center;
}

.texts {
	margin: 40px 0;
}

.texts p {
	margin: 8px 0;
}

.button {
	display: inline-block;
	padding: 0 18px;
	border-radius: 24px;
	background: var(--green);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 32px;
	box-shadow: 0px 6px 16px rgba(120, 184, 43, 0.45);
	cursor: pointer;
	margin: 4px 12px 4px 0;
}

.logo {
	position: relative;
	width: 168px;
	margin: 0 auto 40px;
}

.logo img {
	display: block;
	width: 100%;
}

.tongue {
	position: relative;
	margin: 10px auto;
	max-width: 420px;
	box-sizing: border-box;
	padding: 20px 32px;
	line-height: 32px;
	text-align: right;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 14px 16px 4px rgba(120, 184, 43, 0.5);
}

.tongue .label {
	display: block;
	float: left;
	font-size: 20px;
	font-weight: 600;
	color: var(--dark);
	margin: 4px 0;
}


/* FROM TABLET TO ALL */

@media only screen and (max-width: 720px) {
	
	
	.wrap { margin: 40px 20px }
	.tongue { padding: 20px 24px }
	.button { margin: 4px 8px 4px 0 }
	
	main {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 420px;
		margin: 0 auto;
	}
	
	body {
		background-size: 64% auto;
	}
}
