@charset "UTF-8";

/*
 * Author:         Holger Nägl
 * Author URI:     https://www.klarseite.de
 * Version:        2022-03-12
 */

/* === NORMALIZE.CSS          === */
/* === BASIC CSS              === */
/* === TYPOGRAPHY             === */
/* === LAYOUT                 === */
/* === WEB FONTS              === */



/* === NORMALIZE.CSS === */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}



/* === BASIC CSS === */

html { 
    font-size: 10px;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *,
  *:before, 
  *:after {
      -webkit-box-sizing: inherit;
      -moz-box-sizing: inherit;
      box-sizing: inherit;
  }
  
  body {
      background-color: #000;
      color: #9f9f9f;
      font-size: 1.8rem;
      font-family: hnotal, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.5;
  }
  
  img {
      max-width: 100%;
      height: auto;
  }
  
  

/* === TYPOGRAPHY === */

a:link,
a:visited,
a:hover,
a:focus,
a:active {
    color: #eee;
    text-decoration: none;
    border-bottom: 2px dotted #eee;
}

blockquote {
    margin: 4.8rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    font-style: italic;
    border-left: 0.5rem solid #aaa;
}

blockquote,
blockquote p {
    font-size: 2.4rem;
}

/* Headings Line Heights */

h1 {
    line-height: 1.2;
}

h2 {
    line-height: 1.4;
}

h3, h4, h5, h6 {
    line-height: 1.5;
}

/* Headings Margins */

h1 {
    margin-top: 0;
    margin-bottom: 3.2rem;
}

/*Exception*/
*+h1 {
    margin-top: 7.2rem;
}

h1+h2 {
  margin-top: 3.2rem;
}

h2, h3, h4, h5, h6 {
    margin-top: 5.0rem;
}

/*Exception*/
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

/* Headings Font Size */

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.6rem;
    font-weight: normal;
}

h3, h4, h5, h6 {
    font-size: 2.0rem;
}

hr {
    border: none;
    border-bottom: 1px solid #888;
    margin-top: 40px;
    margin-bottom: 40px;
}

ol {
    margin: 3.0rem 2.0rem 3.0rem 2.0rem;
    list-style: decimal;
}

ol ol {
    margin: 0;
    padding: 0;
    padding-left: 2.8rem;
    list-style: lower-alpha;
}

ol ul {
    margin: 0;
    padding: 0;
    padding-left: 2.8rem;
    list-style: square;
}

ul {
    margin: 3.0rem 2.0rem 3.0rem 2.0rem;
    list-style: disc;
}

ul ul {
    margin: 0;
    padding: 0;
    padding-left: 2.8rem;
    list-style: square;
}

ul ol {
    margin: 0;
    padding: 0;
    padding-left: 2.8rem;
    list-style: decimal;
}



/* === LAYOUT === */

header,
main,
footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.header-line-box {
    overflow: hidden;
    padding-bottom: 13px;
    border-bottom: 1px solid #333;
}

nav { 
    font-size: 1.5rem;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

@media screen and (min-width: 320px) {
    
    .logo-box {
        width: 280px;
        height: auto;
        margin: 0 auto;
    }

    nav li {
        display: inline-block;
        margin-right: 13px;
    }

    nav li:last-of-type {
        margin-right: 0;
    }
}

@media screen and (min-width: 325px) {
    nav li {
        margin-right: 15px;
    }
}

@media screen and (min-width: 820px) {
    nav {
        float: left;
        width: 350px;
        margin-top: 37px;
        font-size: 1.8rem;
    }

    nav ul {
        text-align: left;
    }

    .logo-box {
        width: 388px;
        height: auto;
        display: block;
        float: right;
    } 
}

nav a:link,
nav a:visited,
nav a:hover,
nav a:focus,
nav a:active,
footer a:link,
footer a:visited,
footer a:hover,
footer a:focus,
footer a:active {
    color: #9f9f9f;
    border: none;
}

nav a:link,
nav a:visited,
nav a:hover,
nav a:focus,
nav a:active {
    font-weight: 100;
}

main {
    overflow-wrap: break-word;
}

.colored-teaser {
    margin: 0;
    font-weight: 100;
    text-align: center; 
    line-height: 1.2;
    font-size: 3.0rem; 
    color: rgba(188, 33, 32, 0.8);
}
 
.new-logo {
    margin: 50px auto;
    height: auto;
}

.home-text {
    font-weight: 100;
    font-size: 2.2rem;
}

@media screen and (min-width: 410px) {
    .colored-teaser { 
        font-size: 3.4rem;
        margin: 4px 0;
    }

    .new-logo {
        margin: 54px auto;
    }
}

@media screen and (min-width: 460px) {
    .colored-teaser { 
        font-size: 3.8rem;
        margin: 8px 0;
    }

    .new-logo {
        margin: 58px auto;
    }
}

@media screen and (min-width: 510px) {
    .colored-teaser { 
        font-size: 4.2rem;
        margin: 12px 0;
    }

    .new-logo {
        margin: 62px auto;
    }

    .home-text {
        font-size: 2.4rem;
    }
}

@media screen and (min-width: 560px) {
    .colored-teaser { 
        font-size: 4.6rem;
        margin: 16px 0;
    }

    .new-logo {
        margin: 66px auto;
    }

    .home-text {
        font-size: 2.6rem;
    }
}

@media screen and (min-width: 610px) {
    .colored-teaser { 
        font-size: 5.0rem;
        margin: 20px 0;
    }

    .new-logo {
        margin: 70px auto;
    }

    .home-text {
        font-size: 2.8rem;
    }
}

@media screen and (min-width: 660px) {
    .colored-teaser { 
        font-size: 5.4rem;
        margin: 24px 0;
    }

    .new-logo {
        margin: 74px auto;
    }

    .home-text {
        font-size: 3.0rem;
    }
}

@media screen and (min-width: 710px) {
    .colored-teaser { 
        font-size: 5.8rem;
        margin: 28px 0;
    }

    .new-logo {
        margin: 78px auto;
    }
}

@media screen and (min-width: 760px) {
    .colored-teaser { 
        font-size: 6.2rem;
        margin: 32px 0;
    }

    .new-logo {
        margin: 82px auto;
    }
}

@media screen and (min-width: 810px) {
    .colored-teaser { 
        font-size: 6.6rem;
        margin: 36px 0;
    }

    .new-logo {
        margin: 84px auto;
    }
}

@media screen and (min-width: 860px) {
    .colored-teaser { 
        font-size: 7.0rem;
        margin: 40px 0;
    }

    .new-logo {
        margin: 88px auto;
    }
}

footer {
    font-size: 1.4rem;
    text-align: center;
}

footer hr {
    margin: 0;
    border-bottom: 1px solid #333;
}



/* === WEB FONTS === */

@font-face {
    font-family: 'hnotal';
    font-weight: 400;
    font-style: normal;
    src:url('fonts/hnotal-regular-webfont.woff2') format('woff2'), 
        url('fonts/hnotal-regular-webfont.woff') format('woff');
}

@font-face {
    font-family: 'hnotal';
    font-weight: 700;
    font-style: normal;
    src:url('fonts/hnotal-bold-webfont.woff2') format('woff2'),
        url('fonts/hnotal-bold-webfont.woff') format('woff');
}

@font-face {
    font-family: 'hnotal';
    font-weight: 300;
    font-style: normal;
    src:url('fonts/hnotal-light-webfont.woff2') format('woff2'),
        url('fonts/hnotal-light-webfont.woff') format('woff');
}