/*
Theme Name: BNT Social Media
Theme URI: bnt-notstrom.de/social-media
Author: pure media solutions GmbH
Author URI: https://www.pure-media-solutions.de
Description: 
Version: 1.0.0
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bnt-notstrom.de/social-media
*/

/* FONTS ------------------------------------------------------*/

/* abel-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abel';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/abel-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('fonts/abel-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/abel-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/abel-v18-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('fonts/abel-v18-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('fonts/abel-v18-latin-regular.svg#Abel') format('svg'); /* Legacy iOS */
}

/* GENERAL ---------------------------------------------------*/

:root{
	--green: #00664c;
	--grey: #6f6f6f;
	--light-grey: #f3f3f3;
}

* {
	margin: 0;
	padding: 0;	
	box-sizing: border-box;
}


body{
	background: var(--light-grey);
	color: var(--grey);
	font-family: 'Abel', Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 28px;
}
.container{
	width: 400px;
	max-width: 100%;
	margin: 0 auto;
}
p{
	margin: 0 0 1em;
}


/* TYPO ---------------------------------------------------*/

h1{
	color: var(--green);
	font-size: 24px;
	text-align: center;
}

h2{
	color: var(--green);
	font-size: 18px;
	text-align: center;
	margin-bottom: 50px;
}

a{
	text-decoration: none!important;
	color: var(--grey);	
}


/* Button ---------------------------------------------------*/

.btn{
	background-color: #fff;
	padding: 15px;
	border-radius: 8px;
	text-align: left;
	display: block;
	margin: 0 20px;
}

/* HEADER ---------------------------------------------------*/

header{
	width: 100%;
	float:left;
	height: 190px;
	background: none;
	padding: 60px 0 10px 0;
	z-index: 998;
}

header .logo{
	/*display: block;
	margin-right: auto;
	margin-left: auto;*/
	text-align: center;
}


/* FOOTER ---------------------------------------------------*/

footer{
	width: 100%;
	background-color: var(--green);
	color:#fff !important;
	padding: 50px 0;
	margin-top: 100px;
	text-align: center;
}


/* RESPONSIVE ---------------------------------------------------*/
@media screen and (max-width: 430px) {
	
	header{
		height: auto !important;
	}
	
	.container{
		width: 100% !important;
	}
	
	
}
