body, html {
	width: 100%;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
	
	background-color: #fee;
	
	font-family: "PT Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	
	font-size: 16px;
	color: black;
}

div {
	position: relative;
	padding: 0;
	margin: 0;
}

.wrapper {
	width: 100%;
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	align-content: flex-start;
	
	padding: 4rem 0 4rem 0;
}

.spacer {
	height: 2rem;
}

.logo {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	
	
	width: 15rem;
	height: 15rem;
	background-image: url(img/logo.png);
	background-size: 100%;
}

.logo .logo-fader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fee;
	opacity: 0.5;
}

.logo .logo-title {
	overflow-x: visible;
	overflow-y: visible;

	font-family: "Alex Brush", cursive;
	font-weight: 400;
	font-style: normal;
	
	font-size: 6rem;
	text-align: center;
	
	white-space: nowrap;
	
	color: #870;
}

.headline {
	width: 80vw;
	padding: 0 10vw 0 10vw;
	
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 1.5rem;
	text-align: center;
	
	color: #760;
}

.main {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	align-content: flex-start;
	gap: 1.5rem;
}

.main .main-portrait {
	width: 13rem;
	height: 17.3rem;
	background-image: url(img/portrait.jpg);
	background-size: 100%;
	
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 1rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.main .main-content {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0.75rem;
}

.main .main-content > * {
	display: block;
	margin: 0;
	padding: 0;
	height: 1rem;
}

.main .main-content > .spacer {
	height: 0.25rem;
}

.main .main-content a,
.main .main-content a:visited {
	text-decoration: none;
	color: #870;
}

.main .main-content a:hover {
	text-decoration: none;
	color: blue;
}

.main .main-content a:active {
	text-decoration: none;
	color: black;
}

@media screen and (max-width: 550px) {
	.main {
		flex-flow: column wrap;
	}
	
	.main .main-content {
		align-items: center;
		align-content: flex-start;
	}
}