   body {
      display: flex;             /* enable flexbox */
      flex-direction: column;    /* stack children vertically (column) */
      min-height: 100vh;         /* body fills the viewport height */
      gap: 16px;                 /* spacing between direct children */
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: #f7fafc;
      color: #111827;
      padding: 20px;             /* optional page padding */
      justify-content: center;
      align-items: center;
    }

h1 {
  font-size: 12;
}

.cool-text {
  color: red;
  font-size: 500px;
}

.space-above-me-bitte {
  margin-top: auto;
  font-weight: bold;
}

p{
  font-style: italic;
  width: 50%;
}

button{
  padding: 5%;
  font-size: x-large;
}

img{
  width: 50%;
}
