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

#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;
}

/* - - - - - - - - - - No-JS Warning */

#jswarning {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: black;
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
}

#headwarning {
  width: 80vw;
}

#headwarning h4 {
  font-size: 2vw;
  z-index: 200;
  position: relative;
  color: #ffd700;
  text-align: center;
  font-family: "Raleway";
  font-weight: 100;
}

.nojsopacity {
  opacity: 0;
}

/* - - - - - - - - - - END OF JS-Warning */
#Header {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  background-color: #121212;
}

#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 p {
  font-family: "Titillium Web";
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8,
h9,
li,
a,
p {
  font-family: "Titillium Web";
}

/* 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;
  }
}


/* --- HEADER & NAVIGATION --- */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
nav a {
  text-decoration: none;
  color: var(--color-white);
  margin-left: 40px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.container{
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 5vh;
}