/* ━━━━━━━━━━━━━━━✨ BASIS-STYLES & ROOT-VARIABLEN ━━━━━━━━━━━━━━━ */
:root {
  --accent: #D87C4A;
  --highlight: #ffd7ba;
}
body {
  background-image: url('mme-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: black;
  color: #f5f5f5;
  font-family: "Dancing Script", cursive;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 0.5 = 50% dunkel, höhere Zahl = dunkler */
  z-index: -1;
}

h1 {
  font-family: "Playpen Sans", cursive;
  font-size: 50px;
  align-self: center;
  color: #8E1616;
  margin-bottom: 15px;
  text-align: center;
}
h2 {
  font-family: "Playpen Sans", cursive;
  font-size: 20px;
  align-self: center;
  color: #D84040;
  margin: 5px auto;
  text-align: center;
}
p {
  margin: 5px 0;
  font-size: 15px;
}
.highlight {
  color: #D84040;
  font-weight: bold;
}