/*GOOGLE FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap');

/*VARIABLEN*/
:root{
	/*color*/
	--white: #ffffff;
	--gray: #f6f6f6;
	--darkgray: #707070;
	--dark: #222222;
	--olive: #a3a597;
	--green: #5b8d86;
	/*weight*/
	--light: 300;
	--bold: 700;
	/*size*/
	--small: 0.6rem;
	--medium: 1rem;
	--large: 1.2rem;
}

/*ALLGEMEINE DEFINITIONEN*/
*{
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	letter-spacing: 0.8px;
	margin: 0;
	padding: 0;
}


h2{
	color: var(--dark);
	font-size: var(--medium);
	font-weight: var(--bold);
	text-transform: uppercase;
} 
p{
	color: var(--dark);
	font-size: var(--small);
	font-weight: var(--light);
	padding: 0.3rem 0;
}
a{
	color: var(--dark);
	font-size: var(--small);
	font-weight: var(--bold);
	text-decoration: none;
}

nav{
	background-color: var(--white);
	height: 100vh;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100px;
	min-width: 100px;
}
main{
	background-color: var(--gray);
	min-height: 100vh;
	overflow: hidden;
	padding-left: 100px;
}
a:hover{
	color: var(--olive);
}
strong{
	color: var(--dark);
	font-size: var(--small);
	font-weight: var(--bold);
}
li{
	color: var(--dark);
	font-size: var(--small);
	font-weight: var(--light);
	padding: 0.3rem;
}

/*EIGENE DEFINITIONEN*/
#datenschutzerklaerung{
	padding: 5% 10%;
	max-width: 1000px;
	margin: auto;
}
.absatz{
	padding: 1rem 0;
}
#nav-container{
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem 0.2rem;
	height: 100%;
}
.logo{
	margin-bottom: 1rem;
	width: 80px;
	max-width: 100%;
}
.fas{
	color: var(--dark);
	font-size: 2rem;
}
.fas:hover{
	color: var(--olive);
}
/*------FOOTER------*/
footer{
	background-color: var(--white);
	display: flex;
	height: 153px;
	width: 100%;
}
#footer{
    align-items: center;
    display: flex;
	height: auto;
    justify-content: flex-end;
    margin-left: 25%;
	padding: 0 2rem;
    width: 1300px;
}
#copyright{
    align-items: center;
    display: flex;
    line-height: 1.2rem;
	width: 70%;
}
#copyright img{
    width: 80px;
}
#designer{
    display: flex;
    flex-direction: column;
}
#designer p, #designer a, #datenschutz a, #datenschutz a:first-child{
	font-size: var(--small);
	font-weight: 100;
	text-decoration: none;
}
#designer a{
    line-height: 1.2rem;
    font-weight: var(--bold);
}
#datenschutz a:first-child{
    margin-right: 2rem;;
}
/*-----MEDIA QUERY------*/
@media screen and (max-width: 1024px){
	#footer{
		padding: 0 1rem;
		margin-left: 300px;
		width: 80%;
	}
	#copyright img{
		width: 60px;
	}
	#copyright{
		width: 100%;
	}
	#designer p, #designer a, #datenschutz a, #datenschutz a:first-child{
		font-size: 0.5rem;
		line-height: 0.7rem;
	}
	#designer a{
    font-weight: var(--bold);
	}
	#datenschutz{
		line-height: 0.7rem;
		width: auto;
	}
}
@media screen and (max-width: 818px){
	
	#footer{
		padding: 0;
	}
	#copyright img{
		width: 50px;
	}
	#designer p, #designer a, #datenschutz a, #datenschutz a:first-child{
		font-size: 0.4rem;
	}
}
@media screen and (max-width: 682px){
	main{
		overflow: hidden;
		padding-left: 0;
		padding-top: 100px;
	}
	nav{
		height: 4.8rem;
		width: 100vw;
		z-index: 100;
	}
	#nav-container{
		align-items: center;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 0rem 1rem;
		padding: 0 2rem;
	}
	.logo{
		margin: 0;
	}
	.fas{
		font-size: 1.5rem;
	}
	#footer{
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin: auto;
		width: 90%;
	}
	#copyright{
		align-items: center;
		justify-content: center;
		border-bottom: 1px solid var(--gray);
		padding-bottom: 0.2rem;
	}
	#copyright img{
		width: 50px;
	}
	#datenschutz{
		padding-top: 0.2rem;
	}
	#designer p, #designer a, #datenschutz a, #datenschutz a:first-child{
		font-size: 0.5rem;
	}
}
@media screen and (max-width: 390px){
	/*------FOOTER------*/
	footer{
		height: 100px;
	}
	#copyright{
		padding-bottom: 0.1rem;
	}
	#datenschutz{
		padding-top: 0.1rem;
	}
	#designer p, #designer a, #datenschutz a, #datenschutz a:first-child{
		font-size: 0.3rem;
	}
}