@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'Avenir Book';
    src: url("Fonts/Avenir_TTF/Avenir-Book-01.ttf");
}

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


h1, h2, h3, h4, h5, h6, p {
	font-family: "Avenir Book", helvetica, Arial;
}

body {
	width: 100%;
	height: 100vh;
}

.full-heigth {
	height: 100%; 
}


/* Colors */ 
.bg-softpink {background: #e7cdbe;}
.bg-darkblue {background: #414867;}

.color-softpink {color: #e7cdbe;}
.color-darkblue {color: #414867;}
.color-white {color: white;}

/* Layout */

.text-box {
	display: grid;
	width: 90%;
	margin: auto;
	/*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}

.span-2 {grid-column: span 2;}

.logo-image {
	margin-top: 30px;
	max-width: 200px;
	width: 80vw;
	height: auto;
}

/* Align */

.center-vertical {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
}


/* Content */

.text-description {
	margin-top: 30px;
}

.portrait {
	padding: 20px 0;
	height: 250px;
	background-image: url("Bilder/Markus-profil.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
}


.social-links a{
	color: #414867;
	margin-right: 20px;
	padding: 0 5px;
	text-decoration: none;
}

.social-links a:hover{
	border-bottom: 2px solid black;
}


#portfolio01 {
	background: url("Bilder/STEFFEN_SCHRAUT_02_027_FINAL.jpg");
	background-size: cover;
	background-position: top center;
}

#portfolio02 {
	background: url("Bilder/STEFFEN_SCHRAUT_06_060_FINAL+Logo.jpg");
	background-size: cover;
	background-position: top center;
}










