

  @font-face {
    font-family: Simplon;
    src: url(/fonts/Rauschen-ARegular-Web.woff2) format('woff2'), url(/fonts/Rauschen-ARegular-Web.woff) format('woff');
    font-weight: 400;
  }


  body {
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
  }
  
  html {
    height: -webkit-fill-available;
  }


body {
    font-family: Simplon, sans-serif;
    background-color: #f2f2f2;
    padding: 0;
    margin: 0; 
    display: flex; 
    flex-direction: column;
    margin: 0;
  }
  

h1,h2,h3,h4,h5{
    font-weight: 400;
}
body > div {
    flex: 1;
    display: flex; 
    flex-direction: column;
}
.grid {
    flex: 1;
    display: grid;
    grid-template-rows: 100px 1fr 100px 10px;
    grid-template-columns: auto;
}

.Kopfleiste {
grid-row: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
margin: 0 25px;
}

.Inhalt {
    grid-row: 2 / 2;
    display: flex;
    gap: 25px;
    flex-flow: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 25px 25px;
}

.center {
    text-align: center;
}
.input {
   
}

.active .img {
    border: 5px solid #FF4C65;

}

.img {
    border: 0px solid rgba(0,0,0,0);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 200px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2); 
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.Knopfleiste {
    height: 100%;
    grid-row: 3 / 3;
    display: flex;
    align-items: center;
    margin: 0 25px;
}

.hide {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    width: 0px;
    height: 0px;
}

p {
    max-inline-size: 60ch;
    line-height: 1.6;
    transform: translate3d(0px, -20px, 0px);
}

button {
    background-color: #f2f2f2;
    border: 1.5px solid #000;
    padding: 0.4ch 2ch;
    border-radius: 20px;
    font-family: Simplon, sans-serif;
    font-size: 1em;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2); 
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
}

button:hover {
    border: 1.5px solid #FF4C65;
    color: #FF4C65;
}

button:active:hover {
    border: 1.5px solid #000;
}

.left {
    height: fit-content;
    width: fit-content;
    margin-right: auto;
}

.right {
    height: fit-content;
    width: fit-content;
    margin-left: auto;
}

.message {
    width: 100%;
    text-align: center;
    color: #FF4C65;;
    /* font-weight: bold; */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hundert {
    width: 100%;
}
img {
    max-inline-size: 100%;
}
.img.phone {
    aspect-ratio: 9/16;
    border-radius: 0;
}

.progress {
    grid-row: 4 / 4;
    width: 100%;
    height: 10px;
}

.bar {
    background: #FF4C65;
    height: 10px;
}