@import url('//fonts.googleapis.com/css?family=Roboto:400,700i');
/* --------------------------------------------------
   reset
-------------------------------------------------- */

* {
    box-sizing: border-box;
    outline: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    max-width: 100vw;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background: black;
    color: white;
}

::-moz-selection {
    background: black;
    color: white;
}


/* --------------------------------------------------
   font import
-------------------------------------------------- */

html, body {
    font-size: 16px;
}

@media only screen and (min-width : 600px) {
    html {
        font-size: 17px;
    }
}

@media only screen and (min-width : 800px) {
    html {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1000px) {
    html {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 20px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    max-width: 100vw;
}

.section {
    min-height: 100vh;
}

h1, h2, h3, .headline {
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}


h2 {
    font-size: 1.2rem;
    margin-bottom: .8em;
}

h3{
  font-size: 1rem;
  margin-bottom: .7em;
  line-height: 1.2em;
}

*/
p {
    margin: 1.6rem 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}


/* --------------------------------------------------
   general layout
-------------------------------------------------- */

.content {
    margin: 0 auto;
    margin-bottom: -10vh;
}

/* Verlauf */

.grad_vert {
  margin: 0 auto;
  background: #2df3d1;
  background: -moz-linear-gradient(top, #2df3d1 0%, #52489c 100%);
  background: -webkit-linear-gradient(top, #2df3d1 0%,#52489c 100%);
  background: linear-gradient(top, #2df3d1 0%,#52489c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2df3d1', endColorstr='#52489c',GradientType=1 );
}

.grad_revert {
  margin: 0 auto;
  background: #2df3d1;
  background: -moz-linear-gradient(bottom, #2df3d1 0%, #52489c 100%);
  background: -webkit-linear-gradient(bottom, #2df3d1 0%,#52489c 100%);
  background: linear-gradient(bottom, #2df3d1 0%,#52489c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#52489c', endColorstr='#2df3d1',GradientType=1 );
}

.grad_84{
  background: #2df3d1;
  background: -moz-linear-gradient(top, #2df3d1 0%, #409db6 84%, #52489c 100%);
  background: -webkit-linear-gradient(top, #2df3d1 0%,#409db6 84%,#52489c 100%);
  background: linear-gradient(to bottom, #2df3d1 0%,#409db6 84%,#52489c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2df3d1', endColorstr='#52489c',GradientType=0 );
}

.grad_re84{
  background: #2df3d1;
  background: -moz-linear-gradient(bottom, #2df3d1 0%, #409db6 84%, #52489c 100%);
  background: -webkit-linear-gradient(bottom, #2df3d1 0%,#409db6 84%,#52489c 100%);
  background: linear-gradient(to top, #2df3d1 0%,#409db6 84%,#52489c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#52489c', endColorstr='#2df3d1',GradientType=0 );
}


/* --------------------------------------------------
   hero
-------------------------------------------------- */

.hero {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.zahl {
    display: block;
    width: 100vw;
    height: auto;
    text-align: center;
}

.zahl h1 {
    margin-bottom: 0 !important;
    font-size: calc(4rem);
}

@media only screen and (min-width : 300px) {
  .zahl h1 {
      font-size: calc(6rem) ;
  }
}

@media only screen and (min-width : 450px) {
  .zahl h1 {
      font-size: calc(8rem);
  }
}

@media only screen and (min-width : 600px) {
  .zahl h1 {
      font-size: calc(10rem);
  }
}

@media only screen and (min-width : 900px) {
  .zahl h1 {
      font-size: calc(12rem);
  }
}

@media only screen and (min-width : 1000px) {
  .zahl h1 {
      font-size: calc(14rem);
  }
}
@media only screen and (min-width : 1200px) {
  .zahl h1 {
      font-size: calc(20rem);
  }
}

.zahl p{
  font-size: 16px;
  color: white
}

/* --------------------------------------------------
   nav
-------------------------------------------------- */

.header{
  width: 100%;
  height: 50px;
  background: rgba(82,72,156,0.6);
  z-index: 100;
  position: fixed;
}

.logo{
  width: 160px;
  position: absolute;
  margin-top: -21px;
  left: 5px;
}

.nav{
  display: inline-block;
  display: flex;
  justify-content: center;
}

.nav ul{
  margin-top: 3px;
}

.nav li{
  display: inline-block;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
}

.nav a{
  color: white;
  font-weight: 400;
}

.nav a:hover{
  font-weight: 700;
}

.header-zahl{
  text-align: right;
}

@media only screen and (max-width: 700px) {
    .nav {
      display:none;
    }
}


.socialwrap{
  width: 100%;
  position: absolute;
  left: 0;
  top: 75vh;
  margin: 0 auto;
  text-align: center;
}

/* --------------------------------------------------
   Download Button
-------------------------------------------------- */

.download{
  position: fixed;
  z-index: 1500;
  right: 0;
  bottom: 0;
  margin: 2%;
  text-align: center;
  min-width: 285px;
  background: rgba(255,255,255,0.2);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 0.3125rem;
  display: inline-block;
  padding: 1rem;
  color: #fff;
}

.download:hover{

  background: rgba(255,255,255,0.5)
  border-radius: 0.3125rem;

  -webkit-box-shadow: inset 0.1875rem 0.1875rem 0 0 #fff, inset -0.1875rem -0.1875rem 0 0 #fff, inset -0.1875rem 0.1875rem 0 0 #fff, inset 0.1875rem -0.1875rem 0 0 #fff;
  box-shadow: inset 0.1875rem 0.1875rem 0 0 #fff, inset -0.1875rem -0.1875rem 0 0 #fff, inset -0.1875rem 0.1875rem 0 0 #fff, inset 0.1875rem -0.1875rem 0 0 #fff;

  color: #fff;
}

/* --------------------------------------------------
   Pfeil
-------------------------------------------------- */

.pfeilwrap{
  width: 100%;
position: absolute;
left: 0;
top: 85vh;
margin: 0 auto;
text-align: center;
}

.pfeil{
    display: inline-block;
    padding: 1rem;
    margin: 0 auto;
    animation: pfeilbouncing 0.5s ease-in infinite alternate;
}


@keyframes pfeilbouncing {
    from {
        transform: translateY(-5px);
    }
    to {
        transform: translateY(0px);
    }
}

/* --------------------------------------------------
   intro
-------------------------------------------------- */

.intro {

}


.intro-text {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 50rem;
}

.intro-text p {
  color: white;
  text-align: center;
}


@media only screen and (min-width: 1000px) {
    .intro {
        display: flex;
        justify-content: space-around;
            align-items: center;
    }
    .intro-text {
        width: 70%;
        margin: 0;
    }
}



/* --------------------------------------------------
   block1
-------------------------------------------------- */

.unterzahl {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-block;
}

.block1 ul::before {
    content: "Klicke auf eine der ersten vier Zahlen, um mehr anzuzeigen";
    z-index: 500;
    position: absolute;
    color: #fff;
    transform: translateY(-10vh);
}

.block1{
  display: flex;
align-items: center;
justify-content: space-around;
background: rgba(63,53,121,0.95);
}

.block1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    max-height: 100vh;
}

.block1 .link{
  padding: 2rem 10rem;
}

.block1 .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10000;
    background: red;
    display: none;
}

.overlay{
}

#overlay1 {
    background: rgba(63,53,121,0.95);
}

#overlay2 {
    background: rgba(63,53,121,0.95);
}

#overlay3 {
    background: rgba(63,53,121,0.95);
}

#overlay4 {
    background: rgba(63,53,121,0.95);
}

.block1 li {
    width: 50%;
}

@media only screen and (min-width: 300px) {
    .block1 li {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .block1 li {
        width: calc(100%/2);
    }
}

@media only screen and (min-width: 900px) {
    .block1 li {
        width: calc(100%/3)
    }
}

.block1 li:nth-child(5) a {
    background-color: #3F3579;
}

.block1 li:nth-child(6) a {
    background-color: #443A82;
}

.block1 li:nth-child(7) a {
    background-color: #473D89;
}

.block1 li:nth-child(8) a {
    background-color: #483E8B;
}

.block1 li:nth-child(9) a {
    background-color: #4E4396;
}

.block1 li:nth-child(10) a {
    background-color: #53489C;
}

.block1 a {
  display: inline-block;
width: 100%;
height: auto;
color: white;
position: relative;
text-align: center;
padding: 3rem;
transition: all .3s ease;
overflow: hidden;
}

.zahlen-zahl {
  font-size: 4.5rem;
}

.unterzahl p{
  font-size: 1.3rem;
  text-align: left;
  color: #fff !important;
  display: inline-block;
width: 100%;
height: auto;
color: white;
position: relative;
text-align: center;
padding: 3rem;
transition: all .3s ease;
overflow: hidden;
}

.zahlen-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 1.25rem;
}

.block1 p.quelle {
    color: white;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 1rem;
}




/* --------------------------------------------------
   block2
-------------------------------------------------- */

.block2 {
    align-items: center;
}

@media only screen and (min-width: 1000px) {
    .block2 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10rem;
    }
    .hilfe {
        width: calc(100%/2);
        margin: 0;
        padding:2rem;
    }
}

.hilfe {
box-shadow: none;
padding: 1rem;
}

.hilfe h2 {
  display: inline;
}

.hilfe p{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: white;
}

.hilfe a{
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.hilfe img{
  width:20px;
  margin-right: 7px;
}



/* --------------------------------------------------
   block3
-------------------------------------------------- */

.block3 {
  padding: 2rem;
  margin: 0 auto;
  margin-bottom: -2vh;
}

.block3 h2{
  text-align: center;
  margin-bottom: 2rem;
}

.bundesland_menu{
  text-align: center;
}

.bundesland_list {
  display: inline-block;
  margin: 0 0.25rem 0.75rem 0.25rem;
}


  .bundesland_link{
    text-align: center;
      width: 40vw;
      background: rgba(255,255,255,0.2);
      font-family: 'Roboto', sans-serif;
      font-weight: normal;
      font-size: 1.25rem;
      border-radius: 0.3125rem;
      display: inline-block;
      margin: 0 auto;
      padding: 0.5rem;
      color: #fff !important;

      text-decoration: none;
      font-weight: bold;
      color: black;
  }


  .bundesland_link:hover{
      background: rgba(82,72,156,0.6);
    }

@media only screen and (min-width : 600px) {
  .bundesland_menu{
    text-align: center;
  }

  .bundesland_list {
    display: inline-block;
    margin: 0 0.25rem 0.75rem 0.25rem;
  }

  .bundesland_link:hover{
      background: rgba(82,72,156,0.6);
    }

    .bundesland_link{
      text-align: center;
        width: 40vw;
        background: rgba(255,255,255,0.2);
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        font-size: 1.25rem;
        border-radius: 0.3125rem;
        display: inline-block;
        margin: 0 auto;
        padding: 0.5rem;
        color: #fff;

        text-decoration: none;
        font-weight: bold;
        color: black;
    }
}

@media only screen and (min-width : 800px) {
  .bundesland_menu{
    text-align: center;
  }

  .bundesland_list {
    display: inline-block;
    margin: 0 0.25rem 0.75rem 0.25rem;
  }

  .bundesland_link:hover{
      background: rgba(82,72,156,0.6);
    }
    .bundesland_link{
      text-align: center;
        width: 40vw;
        background: rgba(255,255,255,0.2);
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        font-size: 1.25rem;
        border-radius: 0.3125rem;
        display: inline-block;
        margin: 0 auto;
        padding: 0.5rem;
        color: #fff;

        text-decoration: none;
        font-weight: bold;
        color: black;
    }
}

@media only screen and (min-width: 1000px) {
  .bundesland_menu{
    text-align: center;
  }

  .bundesland_list {
    display: inline-block;
    margin: 0 0.25rem 0.75rem 0.25rem;
  }

  .bundesland_link:hover{
      background: rgba(82,72,156,0.6);
    }

    .bundesland_link{
      text-align: center;
        width: 40vw;
        background: rgba(255,255,255,0.2);
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        font-size: 1.25rem;
        border-radius: 0.3125rem;
        display: inline-block;
        margin: 0 auto;
        padding: 0.5rem;
        color: #fff;

        text-decoration: none;
        font-weight: bold;
        color: black;
    }
}

@media only screen and (min-width: 1200px) {
  .bundesland_menu{
    text-align: center;
  }

  .bundesland_list {
    display: inline-block;
    margin: 0 0.25rem 0.75rem 0.25rem;
  }

  .bundesland_link:hover{
      background: rgba(82,72,156,0.6);
    }

  .bundesland_link{
    text-align: center;
      width: 40vw;
      background: rgba(255,255,255,0.2);
      font-family: 'Roboto', sans-serif;
      font-weight: normal;
      font-size: 1.25rem;
      border-radius: 0.3125rem;
      display: inline-block;
      margin: 0 auto;
      padding: 0.5rem;
      color: #fff;

      text-decoration: none;
      font-weight: bold;
      color: black;
  }
}


/* --------------------------------------------------
   block4
-------------------------------------------------- */

.block4 {

}

.idee {
  padding: 2rem;
  margin: 1rem auto;
  max-width: 45rem;
  margin-bottom: 5rem;
}

.idee-text {
  font-size: 16px;
  color:white;
  line-height: 1.3;
}

.idee-text p {
  color: white;
}




/* --------------------------------------------------
   footer
-------------------------------------------------- */


footer {
    padding: 2rem;
    background: #1A1A1A;
    color: white;
    text-align: center;
    font-size: .7rem;
}

footer img {
    width: 50%;
}

footer a{
  color: white;
  font-weight: 400;
}

.socialmedia{
display: block;
width: 100%;
padding: 1rem 0 2rem 0;
}

.socialmedia_list{
  display: inline-block;
}

.socialmedia_link{
  padding: 1rem 0.125rem;
}

.socialmedia img{
  width: 25px;
  margin: 5px;
}