/*moblie first*/

/*@media only screen and (max-width: 800px){
*/

* {
	margin: 0;
	border: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: poppins, sans-serif;
	font-style: medium;
	font-weight: 300;
	/* background-color:yellow;  */
}

html {
	font-size: 10px;
}

/*Typo*/

h1 {
	font-family: poppins, sans-serif;
	font-style: semibold;
	margin-bottom: 0.0rem;
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.7rem;
	color: white;
	text-transform: none;
}

h2 {
	font-family: poppins, sans-serif;
	font-style: medium;
	margin-bottom: 0.0rem;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.01rem;
	color: #BDBDBD;
	text-transform: none;
}

h3 {
	font-family: poppins, sans-serif;
	font-style: semibold;
	margin-bottom: 0.0rem;
	font-size: 2.3rem;
	font-weight: 500;
	letter-spacing: 0.00rem;
	color: black;
	text-transform: none;
}

h4 {
	font-family: poppins, sans-serif;
	font-style: medium;
	margin-bottom: 0.0rem;
	font-size: 2.0rem;
	font-weight: 450;
	letter-spacing: 0.01rem;
	color: #BDBDBD;
	text-transform: none;
}



p {
	font-family: poppins, sans-serif;
	font-style: semibold;
	margin-bottom: 0.0rem;
	font-size: 2.3rem;
	font-weight: 450;
	letter-spacing: 0.00rem;
	color: black;
	text-transform: none;
}

a {
	font-family: poppins, sans-serif;
	font-style: medium;
	 margin-bottom: 0.0rem ;
	/* font-size: 5.0rem; */
	font-weight: 500;
	letter-spacing: 0.1rem;
	color: #BDBDBD; 
	text-transform: none;
	justify-content: center;
	align-items: center;
	/* background-color: rgb(226, 43, 202); */
}

.project {
	margin: 0.0rem 0.0rem 0.7rem 0.0rem;
	/* padding: 0rem; 
	 /* background-color: tomato;   */
}

.intro {
	margin: 0.0rem 0rem 0rem 0rem;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	margin: 5%;
}

.about {
	padding: 5% 20% 5% 10%;
}

.social {
	padding: 5%;
}







.flex>*:nth-child(1) {
	flex: 70%;
}

.flex>*:nth-child(2) {
	flex: 30%;
}

/*
      Rollover Image
     */

.figure {
	position: relative;
	width: 100%;
	/* background-color: teal;   */
	margin: 0.0rem 0.0rem 0.0rem 0.0rem;
	padding: 0.0rem;
}

.figure img.image-hover {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0
;
	object-fit: contain;
	opacity: 0;
	transition: opacity .2s;
}

.figure:hover img.image-hover {
	opacity: 1;
}

/*------ MENU-----*/

nav {
	background: black;
	color: white;
	display: flex;
	justify-content: space-between;
	z-index: 5;
}

/*
nav .mainMenu
{
 display: flex;
 list-style: none;
}

nav .mainMenu li a
	{
		display: inline-block;
		padding: 15px;
		text-decoration: none;
		text-transform: uppercase;
		color: white;
		font-size: 1.5rem;
	}
	

	nav .mainMenu li a:hover
	{
		background: tomato;
	}

	nav .openMenu
	{
		font-size: 2rem;
		margin: 20px;
		display: none;
		cursor: pointer;
	}

	nav .mainMenu .closeMenu , .icons i
	{
		font-size: 2rem;
		display: none;
		cursor: pointer;
	}
	.fa-instagram:hover {color:blue}

	nav .logo
	{
		margin:6px;
		font-size: 25px;
		cursor: pointer;
	}

	@media(max-width: 800px)
	{
*/

nav .mainMenu {
	display: flex;
	list-style: none;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000;
	transition: top 1s ease;
	display: none;
}

nav .mainMenu li a {
	display: inline-block;
	padding: 15px;
	text-decoration: none;
	text-transform: uppercase;
	color: #BDBDBD;
	/* background-color: indigo; */
	font-size: 3.0rem;
}

nav .mainMenu .closeMenu {
	display: block;
	position: absolute;
	font-size: 2rem;
	top: 20px;
	right: 20px;
}

nav .openMenu {
	display: block;
	font-size: 2rem;
	margin: 20px;
	align-items: center;
	cursor: pointer;
}

nav .mainMenu li a:hover {
	background: none;
	color: white;
	font-size: 3.3rem;
}

nav .logo {
	display: flex;
	margin: 0px;
	font-size: 25px;
	cursor: context-menu;
	justify-content: center;
	align-items: center;
}

.ring {
	margin: 17px;
	justify-content: center;
	align-items: center;
}

.insta {
	font-family: poppins, sans-serif;
	font-style: medium;
	margin-bottom: 0.0rem;
	font-size: 2.0rem;
	font-weight: 450;
	letter-spacing: 0.1rem;
	color: black;
	text-transform: none;
}





/* scrollbutton */

.scroll-down {
	opacity: 1;
	-webkit-transition: all .5s ease-in 3s;
	transition: all .5s ease-in 3s;
}

.scroll-down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-left: -16px;
	display: block;
	width: 32px;
	height: 32px;
	border: 2px solid #FFF;
	background-size: 14px auto;
	border-radius: 50%;
	z-index: 2;
	-webkit-animation: bounce 2s infinite 2s;
	animation: bounce 2s infinite 2s;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.scroll-down:before {
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 6px);
	transform: rotate(-45deg);
	display: block;
	width: 12px;
	height: 12px;
	content: "";
	border: 2px solid white;
	border-width: 0px 0 2px 2px;
}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}




.impressum 
{
	padding: 10px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	
}

.impressum a
{
	display: flex;
	margin: 0px;
	font-size: 2rem;
	cursor: pointer;
	color: #BDBDBD; 

	

}


.impressum:hover a
{
	color: white; 

}

.footericons
{

	vertical-align: middle;
	margin: 10px;	
	justify-content: center;
	align-items: center;
}

.logofaed{
	 margin: 5px;
	/* background-color: coral; */
	filter: brightness(74%);
}

.logofaed:hover
{
	filter: brightness(100%);
}

.pfeiloben{
	
	margin: 5px;
   filter: brightness(74%);
  
}

.pfeiloben:hover
{
   filter: brightness(100%);
}
footer
{
	background: black;
	color: white;
	display: flex;
	justify-content: space-between;
	
	z-index: 5;
}


.impressumtxt

{
	padding:  3% 10% 3% 10%;
}



@media only screen and (max-width: 600px) {
	
		nav .mainMenu li a {
			display: inline-block;
			padding: 15px;
			text-decoration: none;
			text-transform: uppercase;
			color: #BDBDBD;
			/* background-color: indigo; */
			font-size: 2.0rem;
		}
		nav .mainMenu li a:hover {
			background: none;
			color: white;
			font-size: 2.2rem;
		}

		.social {
			padding: 5% 20% 5% 10%;
		}
}




