/* Deklaration dass der Hintergrund randlos übergeht */
html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#body {
  overflow-x: hidden;
  -webkit-user-select: none;
  /* Für Safari */
  -moz-user-select: none;
  /* Für Firefox */
  -ms-user-select: none;
  /* Für Internet Explorer */
  user-select: none;
}

#Header {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  background-color: #121212;
}

h1 {
  font-family: "Titillium Web";
  font-weight: 400;
}

#Header h1 {
  color: white;
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: 4vw;
  margin-top: 1.5vw;
  margin-bottom: 1.5vw;
  letter-spacing: -0.03em;
}

#Rahmen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#content {
  display: flex;
  flex-direction: column;

  width: 60vw;
  margin: 5vw;
  padding: 2em;
  box-shadow: 0px 0px 10px 0px black;
}

#content h2 {
  font-family: "Titillium Web";
  font-weight: 500;
}

#content h3 {
  font-family: "Titillium Web";
  font-weight: 400;
}

#content h4 {
  font-family: "Titillium Web";
  font-weight: 500;
}

#content p {
  font-family: "Titillium Web";
  font-weight: 300;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1000px) {
  #Header h1 {
    font-size: 10vw;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  #Banner {
    width: 90vw;
  }

  #Header {
    margin-bottom: 1em;
  }

  #content {
    width: 75vw;
  }
}
