body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

h1 {
  color: darkgreen;
  font-size: 1.7em;
}

p {
  font-size: 1.2em;
  color: #333;
}

hr {
  border: none;
  height: 5px;
  background-color: darkgreen;
  margin: 30px 100px;
  border-radius: 5px;
}

.einladung {
  background: repeating-linear-gradient(#fffde5, #fffde5 28px, #e8e4d9 29px);
  border-left: 6px solid #999;
  padding: 40px 40px 40px 60px;
  max-width: 800px;
  width: 100%;
  font-family: "Comic Neue", cursive, "Arial Rounded MT Bold",
    "Helvetica Rounded", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 0;
}

.einladung::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 20px;
  height: calc(100% - 40px);
  width: 10px;
  background: repeating-radial-gradient(
    circle,
    #bbb 0,
    #bbb 3px,
    transparent 4px,
    transparent 30px
  );
}
.einladung-untertitel {
  font-size: 1.6em;
}

.hinweis {
  font-size: 0.9em;
  font-weight: 300;
}

.fett {
  font-weight: 800;
}

.table-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.label {
  width: 120px;
  font-weight: bold;
  margin-right: 10px;
}

.value {
  flex: 1;
}

.label,
.value {
  font-size: 1.2em;
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
  }

  .einladung {
    padding: 10px 40px 40px 40px;
    max-width: 100%;
  }

  .label {
    width: auto;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1em;
  }

  .value {
    font-size: 1em;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .einladung-untertitel {
    font-size: 1.4em;
  }

  p,
  .value,
  .label {
    font-size: 1em;
  }

  .table-container {
    gap: 10px;
  }
}
