/*fonts*/
/* ibm-plex-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/ibm-plex-sans-v21-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('assets/fonts/ibm-plex-sans-v21-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* ibm-plex-sans-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/ibm-plex-sans-v21-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('assets/fonts/ibm-plex-sans-v21-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* ibm-plex-sans-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/ibm-plex-sans-v21-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('assets/fonts/ibm-plex-sans-v21-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* ibm-plex-sans-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/ibm-plex-sans-v21-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('assets/fonts/ibm-plex-sans-v21-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* ibm-plex-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/ibm-plex-sans-v21-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('assets/fonts/ibm-plex-sans-v21-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: #00262b;
    background-image: repeating-linear-gradient(90deg, #004e52, #004e52 7px, #00262b 7px, #00262b 27px);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
}

.logo-oben-container {
    position: fixed;
    top: 20px;
    left: 50px;
    z-index: 1000;
}

.logo-oben {
    width: 100px;
    height: auto;
}


a {
    color: #b2dbd5;
    text-decoration: none;
}

a:hover {
    color: #004e52;
}

.header {
    padding: 3rem;
    width: 100%;
    text-align: center;
}

.logo {
    height: auto;
    display: block;
    text-align: center;
}

.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.headingbg {
    background-color: #004e52;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.heading {
    font-size: 3rem;
    color: #b2dbd5;
    margin: 0;
    width: 100%;
}

.text {
    font-size: 2rem;
    color: white;
    margin-top: 1rem;
    width: 100%;
}

.impressum {
    font-size: 3rem;
    color: #b2dbd5;
    margin: 3rem;
    padding-top: 4rem;
    width: 100%;
    text-align: left;
}

.impressum-text {
    font-size: 0.5rem;
    font-weight: 400;
    color: white;
    width: 100%;
    text-align: left;
    padding: 2rem;
    margin-top: 6rem;
}

.impressum-text a:hover {
    color: #00262b;
    text-decoration: none;
  }

footer {
    background: #00262b;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 5rem;
    width: 100%;
}

@media (max-width: 768px){   
        
    .impressum {
        font-size: 2.2rem;
    }

    .impressum-text {
    font-size: 1rem;
}


}

@media (min-width: 768px) and (max-width: 1024px) {
    .header {
        padding: 4rem 2rem;
    }

    .logo {
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .headingbg {
        width: 100%;
        padding: 2rem;
        box-sizing: border-box;
    }

    .heading {
        font-size: 6rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .text {
        font-size: 3rem;

        margin: 1rem auto;
    }

    .impressum {
        font-size: 3rem;
    }

    .impressum-text {
        font-size: 1.5rem;
        margin: 1rem auto;
    }


    footer {
        padding: 2rem;
        margin-top: 4rem;
    }
}

@media (min-width: 1024px) {
    .header {
        padding: 5rem;
    }

    .logo {
        max-width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .headingbg {
        padding: 3rem;
    }

    .heading {
        font-size: 8rem;
    }

    .text {
        font-size: 4rem;
    }

    .impressum-text {
        font-size: 1.5rem;
    }

    footer {
        padding: 3rem;
        margin-top: 4rem;
    }
}