@font-face {
  font-family: Poppins;
  src: url(Poppins-Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: Poppins;
  src: url(Poppins-Regular.ttf);
  font-weight: normal;
}

body {
    background: url('hintergrund.svg');
    background-repeat: no-repeat;
    background-size: cover; /* Resize the background image to cover the entire container */
    font-family: 'Poppins';
}

* {
    box-sizing: border-box;
}

#header {
    padding: 20px;
    height: 10%;
    text-align: center;
    padding-top: 55px;
    padding-left: 100px;
}

#header .button {
    color: #fff;
    padding: 10px;
    font-size: 18pt;
    border: 1px solid #fff;
    border-radius: 50px;
    margin-right: 10px;
    font-weight: 100;
    letter-spacing: 1px;
    float: left;
    margin-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
}

#header .button:hover {
    background: #8ca859;
    cursor: pointer;
}

#header .button.active {
    background: #8ca859;
}

#container {
    text-align: center;
}

#left, #right {
    width: 50%;
    text-align: center;
    font-size: 50pt;
    padding-top: 300px;
    z-index: 100;
    position: absolute;
    top: 20%;
    float: left;
}



#left {
    text-align: left;
}

#left img {
    width: 100px;
    margin-left: 20px;

}

#right {
    left: 50%;
    text-align: right;
}

#right img {
    width: 100px;
    margin-right: 20px;
}

#content {
    width: 100%;
    height: 80%;
    text-align: center;
    padding-top: 50px;
    position: absolute;
    top: 20%;
    z-index: 1;
    margin: auto;
    color: white;
}

#content img {
    max-height: 700px;
}

.inhalt {
    font-size: 24pt;
}

.inhalt p {
    padding-left: 15%;
    padding-right: 15%;
}

.inhalt img {
    max-width: 80%;
}

#footer {
    width: 100%;
    text-align: center;
    padding-top: 15%;
    clear: both;
    position: absolute;
    bottom: 7%;
}

#footer img {
    width: 50%;
}