:root {
  --accent: #00bfa5;
  --accent-alt: #ff4081;
  --bg-dark: #1c1f26;
  --text-light: #f5f5f5;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  margin: 0;
  padding-bottom: 120px;
}

h1, h5 {
  color: var(--text-light);
}

section h1,
section h2,
section h3 {
  text-align: center;
}

.section {
  padding: 60px 0;
}

.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.btn-primary {
  background-color: var(--accent);
  border: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-alt);
}

.content {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 40px 20px;
}

.fixed-footer {
  background-color: var(--bg-dark);
  bottom: 0;
  color: var(--text-light);
  height: auto;
  left: 0;
  min-height: 100px;
  padding: 20px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 1000;
}

.fixed-footer a {
  color: var(--text-light);
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Mobile Optimierung */
@media (max-width: 576px) {
  .content {
    padding: 30px 15px;
  }

  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 1.5rem;
  }

}
