@font-face {
  font-family: "a-day-without-sun";
  src: url(assets/A\ DAY\ WITHOUT\ SUN.otf) format("opentype");
}

html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #e1d7cb;
  color: #183b27;
  font-family: sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 24px;
}

h1, h2, h3 {
  font-family: a-day-without-sun, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

header {
  text-align: center;
  padding: 1rem;
}

a {
  display: inline-block;
}

header > img {
  width: 100%;
  max-width: 500px;
}

.wave-container > svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

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

.shadow {
  -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
  filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
  /* Similar syntax to box-shadow */
}

.wave-container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100px;
  vertical-align: middle;
  overflow: hidden;
  box-sizing: border-box;
}

section, footer {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

section {
  min-height: 150px;
  display: flex;
}

footer > .container {
  text-align: center;
  font-size: 0.5rem;
  padding: 0;
  padding-top: 0.5rem;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  box-sizing: border-box;
    padding: 1em;
}

.flex-container {
  width: 100%;
  display: flex;
}

.flex-box {
  width: 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.hhblue {
    background-color: #03375c;
    fill: #03375c;
    color: #fff;
}

.hhgreen {
    background-color: #708c51;
    fill: #708c51;
    color: #fff;
}

.hhwhite {
    background-color: #e1d7cb;
    fill: #e1d7cb;
    color: #183b27;
}

.flex-box > img {
  width: 100%;
}

.block {
  margin: 0 auto;
}

address {
  text-decoration: none;
  font-style: normal;
}

a > svg {
  width: 75px;
  height: 75px;
  fill: #183b27;
  transition: fill 0.3s, transform 0.3s;
}

a:hover > svg {
  fill: #708c51;
  transform: scale(1.2); /* leicht vergrößern beim Hover */
}

.paypal-button {
  display: inline-block;
  background: #ffc439;
  border-radius: 6.25rem;
  min-height: 1.625rem;
  -webkit-box-shadow: inset 0 2px 0 0 hsla(0,0%,100%,.41);
  box-shadow: inset 0 2px 0 0 hsla(0,0%,100%,.41);
  border: 1px solid #d9a630;
  color: #000;
  font-family: Helvetica;
  font-size: .875rem;
  font-weight: 700;
  padding: 0 1rem;
  min-width: 7.5rem;
  margin-bottom: 0;
  line-height: 1.5rem;
  cursor: not-allowed;
}

.youtube {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 999px) {
  .flex-container {
    display: block;
  }

  .flex-box {
    width: 100%;
    padding: 0;
  }
}