/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}
/* raleway-600 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/raleway-v28-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/raleway-v28-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v28-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v28-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v28-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v28-latin-600.svg#Raleway') format('svg'); /* Legacy iOS */
}



body{
	font-family: 'Raleway', sans-serif;
	color: ##1e1e1e;
	margin: 0;
	background-color: #3A465B;
}

p{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4em;
}

a {
	color: ##1e1e1e;
	text-decoration: underline;
}

a:hover {
	color: #1e1e1e;
	text-decoration: none;
}

.footer {
	color: white !important;
	font-size: 1em;
}

strong {
	font-weight: 600;
}

h1 {
	font-size: 2.1em;
	font-weight: 400;
}


h2 {
	font-size: 1.3em;
	font-weight: 600;
}


.container { 
  display: grid; 
  grid-template-rows: 35vh 1fr auto; 
  grid-template-columns:15% 35% 35% 15%; 
   grid-template-areas:
    "header-left"
    "header-right"
    "aside-left"
    "content"
    "aside-right"
    "footer";
}


header-left{
	background-color: none;
	grid-column-start:1; 
	grid-column-end:3; 
	grid-row-start:1;
	grid-row-end:2;
	background-image: url(images/bubble.png);
	background-size: auto 80%;
	background-position-y: center;
	background-position-x: right;
	box-sizing: border-box;
	background-repeat: no-repeat;
	position: relative;
	z-index: 80;
	overflow: visible;
}

header-right { 
	background-color: none;
	grid-column-start:3;
	grid-column-end:5; 
	grid-row-start:1; 
	grid-row-end:2; 
	background-image: url(images/jensgeiss-portrait.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	box-sizing: border-box;
	position: relative;
	z-index: 99;
} 


aside-left{ 
	background-color: white;
	grid-column-start:1;
	grid-column-end:2; 
	grid-row-start:2; 
	grid-row-end:3; 
} 

aside-right { 
	background-color: white;
	grid-column-start:4; 
	grid-column-end:5; 
	grid-row-start:2; 
	grid-row-end:3; 
} 

content { 
	background-color: white;
	grid-column-start:2; 
	grid-column-end:4; 
	grid-row-start:2; 
	grid-row-end:3; 
	padding: 25px;
} 


footer { 
	background-color: #3A465B;
	grid-column-start:1; 
	grid-column-end:5; 
	grid-row-start:3; 
	grid-row-end:4;
	padding: 5px 25px;
}


@media all and (max-width: 900px) {
	p{
		font-size: 1.3em;
	}

	.container {
		grid-template-columns:5% 60% 30% 5%; 
	}
	header-left {
		background-image: url(images/bubble.png);
		background-size: auto 65%;
	}

	header-right {
		margin-right: -45%;
	}
}

@media all and (max-width: 599px) {
	header-left {
		display: none;
	}
	.container {
		grid-template-columns:5% 5% 85% 5%; 
	}
	header-right {
		margin-right: -20%;
	}
}
