:root {
	--font-color: black;
	--primary-color: #F4852B;
	--secondary-color: #008078;
	--error-color-red: #800008;
}

*{
	margin: 0;
	padding: 0;
	font-display: swap;
}

html {
	scroll-behavior: smooth;
}

html, body {
	height: 100%;
}

body {
	background: #FAF8F4;
	font-family: "Nunito Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

header {
	text-align: center;
	width: 100%;
}

.site {
	height: auto; 
	min-height: 100%;
}

main {
	padding-bottom: 115px; /* Höhe des Footers */
	text-align: center;
	width: 100%;
}

.avatar{
	border-radius: 50%;
	max-width: 100%;
	height: 150px;
	margin-top: 30px;
	pointer-events: none;
	user-drag: none;
}

@media screen and (max-width: 1024px) {
	.avatar {
		height: 100px;
		margin-top: 20px;
	}
}

.name {
	font-family: Authenia Solid;
	font-size: 55px;
	color: #004880;
	line-height: 0.6;
	padding-top: 20px;
}

@media screen and (max-width: 1024px) {
	.name {
		font-size: 40px;
		padding-top: 10px;
	}
}


.subtitle {
	font-family: 'Nunito';
	bottom: 6px;
	font-size: 18px;
	position: relative;
	font-weight: 400;	
}

@media screen and (max-width: 1024px) {
	.subtitle {
		font-size: 15px;
	}
}

.linkTree {
	height: 120px;
	border: 1.5mm Solid var(--secondary-color);
	border-radius: 25px;
	width: 84%;
	max-width: 500px;
	margin: 30px auto;
	text-align: center;
	vertical-align: middle;
	line-height: 32px;
	padding: 6px;
	font-weight: 750;
	background: white;
}

.linkTree a:link {
	color: #004880;
}

.linkTree a:visited {
	color: #004880;
}
.linkTree a:hover {
	color: var(--secondary-color);
}

.languageIcon {
	width: 50px;
	height: 50px;
	vertical-align: middle;
	padding-top: 5px;
}

.worldIcon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	padding-right: 6px;
}

.envelopeIcon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	padding-right: 6px;
}

footer {
	height: 95px;
	margin-top: -115px; /* Höhe des Footers */
	background: black;
	padding: 10px 30px 10px 30px;
	color: white;
	text-align: center;
	font-size: 14px;
}

footer a:link {
	color: white;
}
footer a:visited {
	color: white;
}
footer a:hover {
	color: var(--secondary-color);
}