BODY {
	background:					#EAE8E2; /* Régi böngészők */
	background:					-moz-linear-gradient(top, #EAE8E2 0%, #D4CEA6 100%); /* FF3.6-15 */
	background:					-webkit-linear-gradient(top, #EAE8E2 0%, #D4CEA6 100%); /* Chrome10-25, Safari5.1-6 */
	background:					linear-gradient(to bottom, #EAE8E2 0%, #D4CEA6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter:						progid:DXImageTransform.Microsoft.gradient( startColorstr='#EAE8E2', endColorstr='#D4CEA6', GradientType=0 ); /* IE6-9 */
	background-attachment:		fixed;
	font-family:				Gilroy;
	margin:						0;
	padding:					0;
}
#header {
	background-image:			url(images/bg.jpg);
	background-position:		center top;
	background-attachment:		fixed;
	box-shadow:					0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}
#footer {
	background-image:			url(images/bg.jpg);
	background-position:		center bottom;
	background-attachment:		fixed;
	color:						white;
	padding:					1em;
	text-align:					center;
	font-weight:				bold;
	margin-top:					5em;
	text-shadow:				1px 2px 4px black;
}
#footer A {
	color:						white;
}
#header H1,
#header H2 {
	margin:						0;
	padding:					0.25em 1em;
	color:						white;
	text-shadow:				1px 2px 4px black;
}
#header H1 {
	padding-top:				0.75em;
}
#header H2 {
	padding-bottom:				1em;
}

#gallery-container {		/* Galéria tároló */
	display:					flex;
	flex-wrap:					wrap;
	justify-content:			space-between;
}
.gallery-image-text {
	font-size:					0.75em;
	margin-top:					0.25em;
	color:						black;
}
.gallery-image-author {
	font-weight:				bold;
}
.gallery-image,
.gallery-text {
	background-color:			white;
	margin:						1em;
	padding:					15px;
	box-shadow:					0px 1px 2px 0px rgba(0, 0, 0, 0.5);
	text-decoration:			none;
}
.gallery-text {
	margin:						1em 0.75em;
	padding:					2em;
}
.gallery-img {
	box-shadow:					0px 0px 1px 1px rgba(0, 0, 0, 0.5);
}

P {
	margin:						0 0 0.5em 0;
}

/* SZÉLES (FULL HD) DESKTOP NÉZET */
@media only screen and (min-width: 1600px) {
	MAIN,
	#header H1,
	#header H2	{
		width:						80%;
		margin:						auto;
	}
	.gallery-text {
		text-align:					justify;
		font-size:					1.5em;
	}
	.gallery-text-image {		/* Tanár urak képe */
		width:						40%;
		float:						right;
		margin:						0 0 2em 2em;
	}
	.gallery-img {
		height:						280px;
	}
}
/* SIMA DESKTOP NÉZET */
@media only screen and (max-width: 1599px) {
	MAIN,
	#header H1,
	#header H2	{
		width:						90%;
		margin:						auto;
	}
	.gallery-text {
		text-align:					justify;
		font-size:					1.5em;
	}
	.gallery-text-image {		/* Tanár urak képe */
		width:						45%;
		float:						right;
		margin:						0 0 2em 2em;
	}
	.gallery-img {
		height:						280px;
		box-shadow:					0px 0px 1px 1px rgba(0, 0, 0, 0.5);
	}
}
/* KIS DESKTOP, TABLET NÉZET */
@media only screen and (max-width: 959px) {
	.gallery-text {
		text-align:					justify;
		font-size:					1.25em;
	}
	.gallery-text-image {		/* Tanár urak képe */
		width:						100%;
		margin:						auto;
		margin-bottom:				2em;
	}
	#gallery-container {		/* Galéria tároló */
		justify-content:			space-around;
	}
}
/* MOBIL NÉZET */
@media only screen and (max-width: 499px) {
	.gallery-text {
		text-align:					left;
	}
	.gallery-img {
		width:						100%;
		height:						auto;
	}
	#gallery-container {		/* Galéria tároló */
		flex-direction:				column;
		flex-wrap:					nowrap;
	}
}