	/* ############## SCHRIFTEN ############## */
	
	@font-face {
	    font-family: 'main-font';
	    src: url('fonts/Inter-Regular.ttf') format('truetype');
	}
	@font-face {
	    font-family: 'headlines';
	    src: url('fonts/Jeko-Semi-Bold.ttf') format('truetype');
	}
	@font-face {
	    font-family: 'subHeadlines';
	    src: url('fonts/Inter-Light.ttf') format('truetype');
	}
	
	h1, h2
	{
		font-family: 'headlines', calibri;
		margin: 0px;
	}
	h3, h4, h5, h6
	{
		font-family: 'subHeadlines', calibri;
		margin: 0px;
	}
	p
	{
		font-family: 'main-font', calibri;
		margin: 0px;
	}
	label
	{
		font-family: 'main-font', calibri;
		margin: 0px;
		cursor: pointer;
	}
	.subHinweis
	{
		font-size: 12px;
		/* text-align: right; */
		margin: 0px;
	}
	
	/* ############## LAYOUT ############## */
	html
	{
		width: 100%;
		min-height: 100%;
		box-sizing: border-box;
	}
	
	body
	{
		width: 100%;
		max-width: 100%;
		height: 100%;
		overflow-y: scroll;
		margin: 0px;
		background-color: #0b6d3c;
		line-height: 1.1;
		font-family: 'main-font', calibri;
		padding-top: 50px;
	}

	.hinweis
	{
		display: block;
		width: 500px;
		padding: 15px;
		box-shadow: 20px 20px 50px 15px #084627;
		border: 3px solid #000;
		border-radius: 20px;
		text-align: center;
		background-color: #FFF;
		box-sizing: border-box;
	}

	.hinweis img
	{
		max-width: 50%;
	}

	@media screen and (max-width: 768px)
	{
		h1
		{
			font-size: 30px;
		}
		h2
		{
			font-size: 20px;
		}
		h3
		{
			font-size: 20px;
		}
		h4
		{
			font-size: 14px;
		}
		h5
		{
			font-size: 12px;
		}
		p
		{
			font-size: 14px;
		}
		.hinweis
		{
			width: 70%;
		}
	}