@import url(normalize.css);
@import url(all.min.css);
 


/*FONTS________________________________________________________________________________________________________________________FONTS*/
/*font-family: 'Roboto', sans-serif;________________________________________________________________________________________________*/

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}



.primary-1 { background-color: rgb(218, 126, 13) }
.primary-2 { background-color: rgb(255, 250, 240) }
.primary-3 { background-color: rgb(254, 246, 225) }


* {
  box-sizing: border-box; 
}

body {
    margin:0;
    color: rgb(255, 250, 240);
    background-color: rgb(218, 126, 13);
  }

p{
    margin-top: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.5em;
  }
 
ul,ol{
    padding:0;
    margin:0;
    list-style-type:none;
  }
    
.innerbox{
    margin: auto;
    overflow:hidden;
  }
  
 
header{
    background-color: rgb(218, 126, 13);
    text-align: center;
  }

header .innerbox{
  overflow: hidden;
  }

header h2{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2.5em;
    margin-top: 50px;
    text-transform: uppercase;
  }

.main_h{  
    background-color: rgb(218, 126, 13);
    left:0;
    top:0;
    z-index: 999;
    width:100%;
    transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out; 
  }

  
#logo{  
    width: 400px;
    margin:auto;
    margin-bottom:50px;
  }

#bild{
    width:500px;
  }
  
footer{
    background-color: rgb(218, 126, 13);
    color: rgb(255, 250, 240);
  }
  
.innerbox{
    overflow:hidden;
    padding-top:20px;
    padding-left: 10px;
    Padding-right: 10px;
    padding-bottom:10px;
    text-align: center;
  }

  footer img{
    width: 210px;
    margin-bottom: 10px;
  }
  
  
.rechtliches li{
    display: block;
    margin-bottom: 3px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.5em;
  }
   
footer ul li a{
    color: rgb(255, 250, 240);
    text-decoration: none;
  }

footer span{
    letter-spacing: 1.4px;
  }

.rechtliches li:last-child{
    text-transform: lowercase;
  }

/*BREAKPOINT 600____________________________________________________________________________________________________________BREAKPOINT 600*/
  @media only screen and (max-width: 600px){

#logo{   
      width: 300px;
    }

#bild{
    width: 300px;
  }
  
header h2{
    font-size: 1.5em;
  }
  p{
    font-weight: 400;
  }
}

/*BREAKPOINT 400__________________________________________________________________________________________________________________________________BREAKPOINT 400*/
@media only screen and (max-width: 400px){ 

#logo{   
    width: 200px;
  }

#bild{
  width: 200px;
}

h1{
    font-size: 1em;
  }

header h2{
    font-size: 1.2em;
  }

  p{
    font-size: 1em;
    line-height: 1.3em;
  }
}