﻿@import url("//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap&subset=latin-ext");

:root
{
	--bs-font-sans-serif: "Poppins", sans-serif;
	/*--bs-body-font-size: 0.8125rem;*/
	--bs-body-line-height: 1.3;
	--vs-font-size: .875rem;
	--landing-background-color: #CFE8E1;
	--landing-color-1: #2AD80E;
	--landing-color-2: #3A78BD;
}


html, body
{
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	background-color: var(--landing-background-color);
}

div.page
{
	border-top: 10px solid var(--landing-color-1);
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}


.center-area
{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img
{
	width: 353px;
	height: 361px;
	max-width: 85vw;
	max-height: 85vh;
}


.lang-bar
{
	background-color: var(--landing-color-2);
	padding: 12px;
	display: flex;
	justify-content: center;
}

.lang-buttons
{
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}


.lang-btn
{
	flex: 0 0 calc(50% - 10px);
	padding: 20px;
	font-size: 18px;
	border-radius: 8px;
	background: rgba(255,255,255,0.05);
	border: none;
	color: #fff;
	font-weight: 600;
	transition: 0.35s;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-decoration: none;
	position: relative;
	align-items: center;
	justify-content: start;
}

	.lang-btn span
	{
		text-align: center;
	}


	.lang-btn:hover
	{
		background: rgba(255,255,255,0.2);
	}


@media (min-width: 768px)
{
	.lang-btn
	{
		flex: 0 0 calc(25% - 10px); /* nagyobb képernyőn 4 gomb egy sorban */
	}
}

@media (max-width: 768px)
{
	.logo img
	{
		width: 247px;
		height: 252px;
		max-width: 85vw;
		max-height: 85vh;
	}

}


#contact
{
	color: #35A762;
	display: flex;
	column-gap: 20px;
	row-gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
