body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: border-box;
}
  
* {
  margin: 0;
}
  
html, body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}
  
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

img{
  pointer-events: none;
}

h1{
  color: #000;
  width: fit-content;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
h1 span{
  display: block;
  background: #fff;
  color: #000;
  padding: 0 .3em;
  width: fit-content;
}

h2 { 
  margin: 1em 0 .2em 0;
  font-size: 22px;
}

.hero{
  display: grid;
  position: relative;
  background: black;
  overflow: hidden;
  height: 80vh;
  width: 100%;
  margin: 0;
  justify-content: center;
  align-items: center;
  background-image: url("files/hero.gif");
  background-repeat: no-repeat;
  background-size: contain;
	background-position: center center;
}

.hero img{
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
}

.hero .desktop{
    display: absolute;
}
.hero .mobile{
    display: none;
}

p.bankverbindung{
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    color: #374151;
    background: #f4f4f4;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: auto;
    width: 230px;
    margin-top: 50px;
    z-index: 5;
}

.buttons{
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 40px 0 -30px 0;
}

a.button{
    padding: 1em;
    background: black;
    border: 3px solid #fff;
    border-radius: 60px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: #fff 0 4px 0;
    transition: all 100ms ease;
}

a.active{
    background: white;
    border: 3px solid black;
    color: #000;
    box-shadow: #fff 0 4px 0;
}

a.button:hover{
    box-shadow: #000 0 0 0;
    transform: translateY(5px);
    transition: all 300ms ease;
}

section{
    background: #000;
    padding: 2% 5%;
    color: #f1f1f1;
}

section .content{
    max-width: 80ch;
    margin: 0 auto;
}

#fbIframeDiv{
    margin: 8% 5%;
    margin: 30px auto;
    max-width: 80ch;
}

.abspann{
    display: grid;
}

.abspann .content{
    margin-bottom: 2em;
}

footer{
  background: #000;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 2em 3em;
  a{
    color: white;
    text-decoration: none;
    border-bottom: 2px solid #FA5ADB;
    height: 2em;
    text-transform: uppercase;
    font-size: 12px;
  }
}

@media only screen and (max-width: 600px) {
    .hero{
        background-image: url("files/heroMobile.gif");
    }

    h1{
        font-size: 25px;
    }

    .buttons {
      flex-direction: column;
      margin-top: 30px;
      text-align: center;
      gap: 16px;
    }

    p.bankverbindung{
        position: relative;
        bottom: 3vw;
        left: 0;
        color: #fff;
        background: none;
        padding: 8px 10px;
        border-radius: 4px;
        font-size: 18px;
        margin-left: auto;
        width: 100%;
        margin-top: 90px;
        z-index: 5;
    }
    p.bankverbindung a{
        text-decoration: none;
        color: #fff;
    }
  }