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

}


#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 h1 {
    font-family: 'Titillium Web';
    font-weight: 500;
}

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

#content li {
    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;
    }
}

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