@font-face {
  font-family: Fascinate;
  src: url(fonts/Fascinate/Fascinate-Regular.ttf);
}

@font-face {
  font-family: ShadowsIntoLight;
  src: url(fonts/Shadows_Into_Light/ShadowsIntoLight-Regular.ttf);
}

@font-face {
  font-family: Josefine;
  src: url(fonts/Josefin_Sans/JosefinSans-VariableFont_wght.ttf);
}

/* colors */
:root {
  --primary-color: #d10b00;
  --secondary-color: #027353;
  --tertiary-color: #027353;
  --background-color: #f2f2f2;
}

html,
body {
  margin: 0 auto;
  padding: 0;
  height: 100%;
  color: rgb(19, 19, 19);
  /* background: #eee; */
  background: var(--background-color);
  max-width: 50em;
  font-family: "Josefine", sans-serif;
  font-weight: 350;
  text-align: left;
}

#container {
  min-height: 100%;
  position: relative;
}
#header {
  padding: 10px;
}
#body {
  padding: 10px;
  padding-bottom: 60px; /* Height of the footer */
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Height of the footer */
  text-align: center;
}

h1 {
  font-family: "Fascinate";
  margin: 0px;
  color: var(--secondary-color);
  font-size: 46px;
}

h2 {
  margin: 0px;
  font-family: "Josefine";
  font-weight: 700;
}
a {
  text-decoration: none;
  color: var(--tertiary-color);
}

a:hover {
  color: var(--primary-color);
}

.handwritten {
  font-family: "ShadowsIntoLight";
  font-size: 25px;
}

.countdown {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

button {
  background-color: var(--primary-color);
  border: none;
  padding: 10px;
  width: 100%;
  max-width: 40em;
  cursor: pointer;
  color: white;
  font-family: "Josefine";
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}

img {
  width: 100%;
}

.logo {
  width: 200px;
}

.flex-container {
  /* background-color: rgb(236, 236, 236); */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-item-3 {
  min-width: 13em;
  flex-basis: 30%;
  flex-grow: 1;
}

.ablauf .flex-item-3 {
    background-color: #f6b511e0;
    border-radius: 10px;
    padding: 0px 7px;
    margin: 5px;
    box-sizing: border-box;
}

.flex-item-2 {
  min-width: 20em;
  flex-basis: 50%;
  flex-grow: 1;
}

.flex-item-img {
  min-width: 12em;
  flex-basis: 30%;
  flex-grow: 1;
  padding: 3px;
  text-align: center;
}

/* .ablauf {
  background-color: lightgreen;
  border-radius: 25px;
  padding: 0 1em;
  box-sizing: border-box;
} */

span.space {
  margin-right: 0.3 em;
}

.iban span {
    display:inline-block;
    padding-left:0.5em;
}
.iban span:first-child {
    padding-left:0;
}

img {
    transition:transform 0.25s ease;
}

.bilder img:hover {
    -webkit-transform:scale(1.5);
    transform:scale(1.5);
    z-index:9999;
    position: relative;
}