html {
  scroll-behavior: smooth;
}
body, html {
  background: #F5F5F5;
  font-size: 18px;
}
.navbar {
  background: #FF6B6B;
}

.container {
  max-width: 650px;
  width: 95%;
}
#abos {
  max-width: 800px;
}

@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-Regular.ttf);
  font-weight: regular;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-SemiBold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Open Sans";
  src: url(fonts/OpenSans-Regular.ttf);
  font-weight: regular;
}
@font-face {
  font-family: "Open Sans";
  src: url(fonts/OpenSans-SemiBold.ttf);
  font-weight: bold;
}

* {
  color: #333 !important;
}

.has-text-white * {
  color: #F5F5F5 !important;
}

h1, h2, h3, h4, section#hero {
  font-family: "Montserrat",  sans-serif;
}
body, input, button {
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    margin-bottom: 1em;
  }
  .navbar-item {
    color: #333 !important;
  }
}


section#hero {
  background: #FF6B6B;
  text-shadow: 1px 1px #FF6B6B, 0 0 10px #FF6B6B;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 10vw !important;
  position: relative;
}
section#hero .container {
  padding-top: 8vw;
} 
section#hero:before {
  content: " ";
  position: absolute;
  width: 100vw;
  height: 26.8vw;
  left: 0;
  bottom: -16vw;
  background-image: url(images/bg-top.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100vw;
}

section#about {
  text-shadow: 1px 1px #F5F5F5, 0 0 10px #F5F5F5;
}

.message[data-accordion] {
  margin-bottom: 0.75em;
}
.message[data-accordion="open"] {
  margin-bottom: 1.5em;
}
.message[data-accordion] .button {
  background: #00A896;
  color: #F5F5F5 !important;
  font-weight: bold;
  border-radius: 4px;
}
.message[data-accordion] .button:hover {
  background: #00c4a7;
}
.message[data-accordion="closed"] .message-body {
  display: none;
}

.button.is-primary {
  background: #00A896;
  color: #F5F5F5 !important;
  font-weight: bold;
}


footer.siteFooter {
  background: #2B3A67;
  height: 100px;
  display: flex;
  align-items: end;
}
body {
  background-image: url(images/bg-bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom 95px center;
  background-size: 100vw;
}

.card-header {
  background: #2B3A67;
}
.card-content hr {
  margin: 0.5em 0;
}
.card-content {
  padding: 1em;
}
a.card-footer-item {
  font-weight: bold;
  color: #2B3A67 !important;
}
a.card-footer-item:hover {
  color: #FF6B6B !important;
}


section#about,
section#services,
section#faq,
section#contact {
  padding-top: 100px !important; margin-top: -100px !important;
}



@media screen and (max-width: 700px) {
  section#hero .container {
    padding-top: 50px;
  } 
  .is-size-1 {
    font-size: 30px !important;
  }
  .is-size-3 {
    font-size: 22px !important;
  }
  .is-size-4 {
    font-size: 20px !important;
  }
  .is-size-6 {
    font-size: 15px !important;
  }
  h2 {
    font-size: 25px !important;
  }
  .message-header.button {
    white-space: initial;
    height: auto;
  }
}



#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.51);
  align-items: center;
  justify-content: center;
  z-index: 999;
}

body[data-overlay="impressum"] #overlay.overlay-impressum {
  display: flex;
}

#overlay .message-header {
  background: #2B3A67;
}
#overlay .message-body {
  max-height: 80vh;
  overflow: auto;
}