/*
Theme Name: INLIGHT Social Media
Theme URI: inlight-gmbh.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: inlight-gmbh.de/social-media
*/

/* FONTS ------------------------------------------------------*/

/* roboto-300 - 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: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
  src: url('fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/roboto-v30-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('fonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-500 - 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: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
  src: url('fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/roboto-v30-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('fonts/roboto-v30-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('fonts/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}


/* GENERAL ---------------------------------------------------*/

:root{
	--yellow: #FCCA15;
	--grey: #3C3C3C;
	--light-grey: #717978;
}

* {
	margin: 0;
	padding: 0;	
	box-sizing: border-box;
}


body{
	background: var(--yellow);
	color: var(--grey);
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}
.container{
	width: 400px;
	max-width: 100%;
	margin: 0 auto;
}
p{
	margin: 0 0 1em;
}


/* TYPO ---------------------------------------------------*/

h1{
	color: var(--grey);
	font-size: 26px;
	text-align: center;
}

h2{
	color: var(--grey);
	font-size: 22px;
	text-align: center;
	font-weight: 300;
	margin-bottom: 50px;
}

a{
	text-decoration: none!important;
	color: var(--grey);	
}


/* Button ---------------------------------------------------*/

.btn{
	background-color: #fff;
	text-align: left;
	display: flex;
	margin: 0 20px;
}

/* HEADER ---------------------------------------------------*/

header{
	width: 100%;
	float:left;
	height: 190px;
	background: none;
	padding: 60px 0 10px 0;
	z-index: 998;
}

header .logo{
	text-align: center;
	margin-bottom: 50px;
}


/* FOOTER ---------------------------------------------------*/

footer{
	width: 100%;
	color:var(--grey);
	font-weight: 300;
	padding: 50px 0;
	margin-top: 100px;
	text-align: center;
}


/* RESPONSIVE ---------------------------------------------------*/
@media screen and (max-width: 430px) {
	
	header{
		height: auto !important;
	}
	
	.container{
		width: 100% !important;
	}
	
	
}
