/* Main Styles */

:root {
	/* Farben */
	--first-color: #1c8199;
	--second-color: #0d1e32;
	--third-color: #004573;
	--fourth-color: #fff;
	--fifth-color: #f9f7f0;
	
	--body-color: #fafafa;
	
	--first-color-hover: #0b7088;
	--fifth-color-darker: #e8e6e0;	
	
	--base-font: "Work Sans", sans-serif;
}

body {
	background-color: var(--body-color);
	font-family: var(--base-font);
}

header {
	background-color: white;
	position: fixed;
	top: 0;
}

.container {
	background-color: var(--fourth-color);
	border: 1px solid var(--fifth-color-darker);
}

h2 {
	font-weight: 300;
	font-size: 40px;
	color: var(--third-color);	
}

h3 {
	font-weight: 600;
	margin-bottom: 1em;
}

nav ul li a {
	color: var(--first-color);
	text-transform: uppercase;
	text-decoration: none;
}
nav ul li a:hover {
	color: var(--first-color-hover);
}

p {
	margin-bottom: 1em;
}

a {
	text-decoration: none;
}
 
a:hover {
	text-decoration: underline;
}

header {
	position: fixed;
}

header > * {
	display: inline-block;
	vertical-align: middle;
}

header nav ul {
	margin: 0;
	padding: 0;
}

header nav ul li {
	display: inline-block;
}


#contact {
	background-color: var(--fifth-color);
}

footer {
	color: var(--third-color);
	font-weight: 500;
}

#consulting .einleitung div:last-child {
	background-color: var(--first-color);
	color: var(--fourth-color);
	font-size: 32px;
	font-weight: 300;
}

#consulting .text {
	background-color: var(--fifth-color);
}

#focus .einleitung div:first-child {
	background-color: var(--third-color);
	color: var(--fourth-color);
	font-size: 22px;
}

#focus .text {
	background-color: var(--fifth-color);
}

#experience .einleitung h2 {
	text-transform: uppercase;
}

#experience  .einleitung .text h2 {
	color: var(--fourth-color);
}

#experience .text {
	background-color: var(--second-color);
	color: var(--fourth-color);
}

#contact {
	text-align: center;
	font-size: 33px;
}

#contact a {
	color: var(--second-color);
}

