/*Allgemein*/
html{
  margin: 0px;
  width: 100%;
}
body{
  margin: 0px;
  width: 100%;
}
section{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #1F1033;
}
/*--HOMEPAGE--*/
/*Header*/
.header #headerLogo{
  float: left;
  width: 60%;
  height: 100vh;
  overflow: hidden;
}
.header #headerLogo img{
  width: 100%;
  height: 100%;
}
.header .text{
  background-color: #1F1033;
  border: #fff 1vh solid;
  height: 100vh;
  box-sizing: border-box;
  padding: 60px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  flex-direction: column;

  /*Wird noch geändert*/
  font-family: "PExtraLight", sans-serif;
  color: #fff;
  font-size: 1vw;
  text-align: justify;
}

/*About*/
.about #aboutLogo{
  float: right;
  width: 60%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0vh;

  background-color: #260437;
}
.about #aboutLogo img{
  width: 100%;
  height: 100%;
}
.about .text{
  background-color: #1F1033;
  border: #fff 1vh solid;
  height: 100vh;
  box-sizing: border-box;
  padding: 60px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  flex-direction: column;

  /*Wird noch geändert*/
  font-family: "PExtraLight", sans-serif;
  color: #fff;
  font-size: 1vw;
  text-align: justify;
}
.about .text a{
  color: #fff;
  text-decoration: none;
}
/*Footer*/
footer{
  height: 10vh;
  background-color: #151520;
  color: #fff;
  font-size: 1vw;
  text-align: center;
  box-sizing: border-box;
  padding-bottom: 1vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer a{
  color: #fff;
}

/*IMPRESSUM*/
/*Navigation*/
nav{
  position: fixed;
  width: 100%;
  height: 5vh;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
  font-size: 2.5vh;
  padding-top: 2.5vh;
}
nav a{
  color: white;
  text-decoration: none;
  font-family: "PExtraLight", sans-serif;
}
/*Header*/
header{
  width: 100%;
  height: 45vh;
  overflow: hidden;
  background-image: url("../img/impressumHeader.png");
  background-size: 100% 100%;
  background-position: 0px 0px;
}
.Impressum{
  height: auto;
}
/*Impressum Main Section*/
.Impressum .impressumText{
  font-family: "PExtraLight", sans-serif;
  color: #fff;
  font-size: 1vw;
  text-align: justify;
  padding: 10vh;
}
